Created
June 19, 2012 14:32
-
-
Save anonymous/2954529 to your computer and use it in GitHub Desktop.
html review
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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