Skip to content

Instantly share code, notes, and snippets.

Created June 19, 2012 14:32
Show Gist options
  • Save anonymous/2954529 to your computer and use it in GitHub Desktop.
Save anonymous/2954529 to your computer and use it in GitHub Desktop.
html review
// helpful links
http://www.w3schools.com/html/html_forms.asp
http://css-tricks.com/
http://960.gs/
<html>
<head>
<title>my title</title>
<style type="text/css">
li { color: red }
.purply { color: purple }
p {
color: blue;
background-color: gray;
background: url(imagename.jpg);
border: 1px solid red;
padding: 10px;
margin: 20px;
}
</style>
</head>
<body>
<h1>headings</h1>
<p> a paragraph of text </p>
<ol>
<li> list </li>
<li> of </li>
<li class="purply"> things </li>
</ol>
<hr />
<img src="imagename.jpg">
<p style="color: blue"> all text here is blue </p>
<p> paragraph 1 </p>
<p> paragraph 2 </p>
<p> paragraph 3 </p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment