Skip to content

Instantly share code, notes, and snippets.

@KaliaHayes
Created February 26, 2018 20:06
Show Gist options
  • Save KaliaHayes/589d6abe83a286c9ff6e94ab2f1a1041 to your computer and use it in GitHub Desktop.
Save KaliaHayes/589d6abe83a286c9ff6e94ab2f1a1041 to your computer and use it in GitHub Desktop.
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 {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment