Mercurial > rlmcintyre
view CSS_tutorial/myPracticeHTML2.htm @ 0:0d795f02a8bb tip
initial committ. what was I thinking?
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Mon, 27 Sep 2010 16:57:26 -0400 |
parents | |
children |
line wrap: on
line source
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">2 <html>3 <head>4 <title>First CSS Tutorial</title>5 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">6 <link href="myCSS.css" rel="stylesheet" type="text/css">7 </head>9 <body>15 <div id="centerDoc">16 <h1>The Main Heading</h1>17 <p>18 Go to the Web Designers Killer Handbook home page and grab the practice HTML page that we will used as the starting template for this tutorial. You can find it under the heading: To create the practice HTML page do the following:.19 Follow the instructions there and create your basic HTML page and do it now!20 </p>21 </div>23 <div id="navigation">24 <h2>The Main navigation</h2>25 <ul>26 <li><a href="cssTutorialPage1.htm">Page One</a></li>27 <li><a href="cssTutorialPage2.htm">Page Two</a></li>28 </ul>29 </div>31 </body>32 </html>