Skip to content

Instantly share code, notes, and snippets.

@mlassoff
Created March 15, 2018 16:52
Show Gist options
  • Save mlassoff/5088a833ca3062a625ec5f79d14bf95c to your computer and use it in GitHub Desktop.
Save mlassoff/5088a833ca3062a625ec5f79d14bf95c to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Text Formatting</title>
<style>
h1{
font-family: Georgia;
color: #0000FF;
background-color: beige;
font-size: 3em;
text-align: center;
}
p {
font-family: Helvetica;
color: #0000a9;
font-size: 1.5em;
line-height: 3em;
}
h2 {
font-weight: bold;
}
</style>
</head>
<body>
<h1>This is the Heading</h1>
<h2>I Know a Song That Gets on Everybodys Nerves.</h2>
<p>The quick brown fox jumped over the lazy dogs. The quick brown fox jumped over the lazy dogs. The quick brown fox jumped over the lazy dogs. The quick brown fox jumped over the lazy dogs. The quick brown fox jumped over the lazy dogs.</p>
<p>Happy Birthday Mister T. Happy Birthday Mister T. Happy Birthday Mister T.</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment