A Pen by Kalia Hayes on CodePen.
Created
February 26, 2018 20:06
-
-
Save KaliaHayes/589d6abe83a286c9ff6e94ab2f1a1041 to your computer and use it in GitHub Desktop.
Blockquote Test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
<link href="https://fonts.googleapis.com/css?family=Cabin|Fjalla+One|Open+Sans+Condensed:300" rel="stylesheet"> | |
<body> | |
<section id="about"> | |
<h1>About Me.</h1> | |
<p> Hello, my name is Kalia Hayes. This is my <b>About Me</b>. </br> I'm testing my abilities to add a block quote bar to my html/css. </br></br> It worked.</p> | |
</section> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body, html { | |
font-family: 'Fjalla One', sans-serif; | |
} | |
h1 { | |
font-size: 30px; | |
text-transform: uppercase; | |
} | |
p { | |
font-size: 20px; | |
font-family: 'Open Sans Condensed', sans-serif; | |
border-left: 5px solid blue; | |
padding-left: 10px;} | |
#about { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment