Basic HTML: Review
We now know:![]()
What's next? More Advanced HTML...
- How to use an editor like SimpleText to write HTML documents (figure to right)
- The basic structure of HTML documents:
- <html>
<head>
<title>title of doc</title>
</head>
<body>
text in body of doc
<address>
address info
</body>
</html>
- Attributes: <p align=right>
and so on... Select View -> Source in the Netscape window to see how these are used in this page!
- Some HTML tags like
- <ol>
<li> How to use an...
<li> The basic...
</ol>- And
- <dl>
<dt> The basic...
<dd> <tt><html></tt><br>
</dl>
- How to make links to other documents:
- <a href="document_URL">link text</a>
- Recall how to make URLs: some rules
- if the file is on your site and in the same folder (directory) as the one you're writing, just use its name: to link to the "basic HTML" page from this document, I write
<a href="4_basichtml.html>a link</a>because the file is called "4_basichtml.html" and is in the same folder as this one.- if the file is on your site and in a different folder (directory), give a path to it: to link to the image "simpletext.gif" (shown above), which is in a subdirectory (folder) below the one this document is in, I write
<img src="images/simpletext.gif" alt="">- if the file is on another web site, give the whole URL.
[basics] [writing] [doit] [more] [tags1] [tags2] [doit2] [review]
[title]
[objectives]
[www uses]
[the works]
[basic html]
[adv html]
[editors]
[resources]
[feedback]
last modified (( Jun 18 08:23:49 1997 ))
HTML/WWW Wkshop: Do it 2
©1997 Gavin LaRose
Comments to: glarose@NebrWesleyan.edu