CSE/IMT 100: Assignment 3
Constructing Your First Web Page
You will have time to begin working on the first part of this assignment in Tuesday’s lab. Please complete steps 1-6 by Wednesday, October 6. The remainder of the assignment, using Microsoft Word as an HTML editor, will be the topic of Thursday’s Lab and due by the following lab, October 12.
<HTML>
<HEAD>
<TITLE>My First Web page</TITLE>
</HEAD>
<BODY>
<H1>Welcome to [your name here] Web site!</H1>
<HR ALIGN="center" WIDTH="80%">
<P>
This is an HTML document that I hand-coded myself. I wrote the code in Notepad and transferred the document up to my Web directory using FTP.
</P>
<H2>Fun with Text</H2>
<P>
In this section I am using HTML to format text:<BR>
<I>this is italics</I><BR>
<B>this is bold</B><BR>
<FONT COLOR="red">this is red</FONT>
</P>
<H2>Links</H2>
<P>
Here is a hypertext link from the phrase
<A HREF = "http://www.cs.washington.edu/100/">CSE 100</A>
to the course Web page for Fluency with Information Technology.
</P>
<H2>A Quote</H2>
<P>
This section of text is displayed in a fixed-width font:
</P>
<PRE>
Hardware: The parts of a computer system
that can be kicked.
-- Jeff Pesis
</PRE>
<H2>A Basic List</H2>
<P>
This is a unordered list of my favorite colors:
</P>
<UL>
<LI> green
<LI> blue
<LI> red
</UL>
<P>
Thanks for visiting! You can write me at:
<ADDRESS>Name (UWNetID@u.washington.edu)</ADDRESS>
</P>
</BODY>
<HTML>
http://www.washington.edu/computing/web/publishing/students.html