Now let's make our Directory page. Start with the following and save it as directory.html.
<html> <head> <title>Practice Page- Directory</title> </head> <body> </body> </html>
VIEW directory.html VIEW Master Page
Give it a heading and write in the text of all the links. We'll add the link info in a minute.
<html>
<head>
<title>Practice Page- Directory</title>
</head>
<body>
<h3>Directory</h3>
<p>Home</p>
<p>Go here<br>
or there</p>
<p>or visit<br>
Yahoo<br>
Google</p>
</body>
</html>
VIEW directory.html VIEW Master Page
Now add the link information.
<html> <head> <title>Practice Page- Directory</title> </head> <body> <h3>Directory</h3> <p><a href="home.html">Home</a></p> <p>Go <a href="here.html">here</a><br> or <a href="there.html">there</a></p> <p>or visit<br> <a href="http://www.yahoo.com/">Yahoo</a><br> <a href="http://www.google.com/">Google</a></p> </body> </html>
VIEW directory.html VIEW Master Page
Wasn't THAT fun! No I suppose it wasn't. Take 5. Stretch, get cup of coffee, go pee, whatever. Take a break. I am.
Frames Tutor |
Lessons: Intro 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
Frames Templates HTML 4.0 Reference Barebones HTML Guide |
![]() |