Please Note - all class mail will be sent to your ODU email address. If you would prefer to receive your email at another address, you must have your email forwarded. This is easily done.
Please access and fully read The Journey Inside - The Internet, even if you feel pretty confident about the World Wide Web. Also, you may wish to explore the links below.
Castro introduces the HTML language and how it works. Again, even if you've done some HTML programming, please read this chapter. I'm sure you'll pick up something.
Based on Learning to Program HTML in 21 Minutes by Philip Greenspun
Creating a World Wide Web page involves the use of HTML, which is a subset of SGML. Gee, thanks... Really, what you do to make a page for the web is create a text document with special marks inserted into the text that are interpreted by a browser. This paragraph, for instance, begins with a mark that looks like this: <p>. This tells the browser that all the text following this mark is a paragraph. To politely tell the browser I am done with this paragraph, I use this code: </p>.
That is how this all works. You open a tag inside of "< >" and close it with "</ >". Anyone who remembers WordPerfect for DOS has had experience with this sort of thing. If I want an word to be in italics, I surround the word with these tags: <i>WOW!</i>, and it looks like WOW! when interpreted by a browser.
Really, all we need to learn is about 20 different codes to put inside those brackets and some attributes that modify those codes. Easy class, no?
Except there is the small problem of doing this well...
For a more formal introduction to HTML, look at NCSA--A Beginner's Guide to HTML. If your interested in SGML, the parent language of HTML, check out this section in the Electronic Labyrinth.
Last modified
Thursday, April 13, 2006 9:56 AM
.