Blockquote Test
<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>
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 {
}