Skip to content

Instantly share code, notes, and snippets.

@zeroeth
Forked from anonymous/refresh.html
Created June 19, 2012 14:54
Show Gist options
  • Save zeroeth/2954636 to your computer and use it in GitHub Desktop.
Save zeroeth/2954636 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>
<link rel="stylesheet" href="css/reset.css" />
<link rel="stylesheet" href="css/text.css" />
<link rel="stylesheet" href="css/960.css" />
<link rel="stylesheet" href="css/demo.css" />
</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 />
<a href="http://www.google.com/">My Link</a>
<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