Tom Kelliher, CS 102
Mar. 7, 2001
Group quiz Friday.
See HTML reading assignment on home page.
``Big Brother.''
FrontPage.
The most basic HTML page:
<html> <head> </head> <body> </body> </html>
Viewing HTML directly.
Some nomenclature:
<i>This will appear in italics.</i> <p>
<body bgcolor="cornflowerblue" text="khaki"> <a href="http://www.goucher.edu/">Goucher College</a>
Some tags you'll need for the lab:
<title>...</title>
--- enclosed text is the page title.
Only valid in the head section.
<center>...</center>
--- enclosed text (or an
image) will be centered.
<h1>...</h1>
--- enclosed text will be an unnumbered
section heading. Range: 1--6.
<p>
--- the end tag isn't usually used.
<i>...</i><b>...</b>
--- italics and bold,
respectively.
<a href="URL">...</a>
--- enclosed text will be a link
to URL, which shouldn't be abbreviated:
http://www.goucher.edu/
.
<img src="URL">
--- no end tag. Insert the image
pointed to by the URL. For the lab, the URL will simply be
baltmap.jpg
.
<hr>
--- no end tag. Insert a horizontal
rule.
<script><!-- var modiDate = document.lastModified; document.write("This page last updated on " + modiDate); // --></script>