HTML
Tom Kelliher, CS14F
Oct. 31, 1996
- What is HTML?
- Where is it used?
- How is it like ``old-fashioned'' word processing?
- Create a directory, just for your pages, images, etc., on your
N: drive. WWW is a good name.
- Use a text (ASCII) to work on each HTML file.
- The file extension should be .htm.
- The name of your home page should be index.htm.
- After I save my pages, how do I use the browser to view them?
- I've just seen a really great page. How can I see how it was done?
Can I download it for myself?
<html>
<head>
<title>My first HTML document</title>
</head>
<body>
<h2>My first HTML document</h2>
Hello, <i>World Wide Web</i>!
<!-- This is a comment. -->
<p>
<hr>
<p>
Greetings from<br>
<a href="http://www.westminster.edu">Westminster College</a>
<p>
<b>Composed with care by:</b>
<cite>(insert your name here)</cite><br>
©1996.
</body>
</html>
- What's a tag?
- html section.
- head section.
- body section.
Most tags are used in pairs:
<sometag>
...
</sometag}
- <title>
- <center>
- <h1>, <h2>, <h3>, ...
- <i>, <b>
- <p>, <br>
- Special characters:
©
- Horizontal rule: <hr>
- Anchor:
<a href="(URL)">Hypertext link</a>
- Lists:
- Unordered list <ul>
- Ordered list <ol>
List items begin with <li>.
-
The Bare Bones Guide to HTML
-
WWW Help Page
-
Guidelines for Web Document Style & Design
-
A Beginner's Guide to HTML
Thomas P. Kelliher
Thu Oct 31 07:46:25 EST 1996
Tom Kelliher