Skip to content

Instantly share code, notes, and snippets.

@sgammon
Created June 17, 2011 00:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sgammon/1030655 to your computer and use it in GitHub Desktop.
Save sgammon/1030655 to your computer and use it in GitHub Desktop.
A page for tyler to practice on
<html>
<head>
<title>Tyler's cool page</title>
<meta name='author' value='sam gammon <sg@samgammon.com>' />
<style type='text/css'>
h1
{
background: pink;
}
p
{
background: green;
}
#paragraph1
{
font-weight: bold;
}
</style>
</head>
<body>
<div id='wrapper'>
<h1>Tyler's cool page</h1>
<p>Here is some paragraph text. This will show you how to style text using CSS, and use selectors.</p>
<p id='paragraph1'>Blablablabla</p>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment