CSC 170 - Introduction to Computers and Their Applications

Dr. R. M. Siegfried

HTML Assignment #4 - Creating a Small Web Site

You're going to create a small web site by creating the following files, all of which should be saved in the same directory and on the same disk drive:

  1. Win.html
  2. Header.html
  3. Menu.html
  4. Content.html
  5. Locations.html
  6. Curriculum.html
  7. Contact.html

win.html


<html>
<title>Win Friends and Influence People!!</TITLE>
<frameset rows="20%, 80%">
<frame src="header.html" scrolling="no">
<frameset cols="25%, 75%">
<frame src="menu.html">
<frame src="content.html" Name="Contents">
</frameset>
</html>

Header.html


<html>
<TITLE>Win Friends and Influence People!!</TITLE>
<BODY bgcolor = "red">
<H2 ALIGN="CENTER"><code FACE="IMPACT" COLOR="WHITE">
<I>Your Name's School of Charm and Good Manners</I></code></H2>

</BODY>
</html>

Menu.html


<html>
<BODY BGCOLOR="#DEB877">
<UL><li><A HREF="win.html" TARGET="_top">Home</A></li>
<li><A HREF="locations.html" TARGET="Contents">Locations</A></li>
<li><A HREF="curriculum.html" TARGET="Contents">Curriculum</A></li>
<li><A HREF="contact.html" TARGET="Contents">Contact</A></li>
</UL></BODY></html>

Content.html


<html><TITLE>My Charm School</TITLE>
<BODY BGCOLOR="#FAEBD7">
<P>We'll teach all you need to know to answer your
<FONT SIZE=+3>biggest</FONT>
critics and handle their <FONT SIZE=-4>tiniest</FONT> complaints.
<P>Come!! Give us a try!!
</BODY>

Locations.html


<html><TITLE>My Charm School</TITLE>
<BODY BGCOLOR="#77ff00">
<P>We have <FONT COLOR="Green">3</FONT> locations in Metropolitan
New York:

<table border ="1"><tr><th>Location</th><th>Address</th></tr>
<tr><td>Brooklyn</td><td>12 Court Street</td></tr>
<tr><td>Queens</td><td>111-02 Queens Blvd, Forest Hills</td></tr>
<tr><td>New Jersey</td><TD>2700 Kennedy Blvd, Jersey</tD></tr>
</table>
</body>

Curriculum.html


<html><title>My Charm School</title>
<body bgcolor="#ABCDEF">
<p>Our curriculum includes:

<ul><li>Sweet talking people, including girlfriends and boyfriends</li>
<li>Accenting the positive and ignoring the negative</li>
<li>Diplomatic double-talk</li><ul>
</body>

Contact.html


<html><title>My Charm School</title>
<body bgcolor="#fff8dc">
<p>Our corporate address is <pre><code>
      123 Franklin Avenue
      Garden City, NY  11530
      Suite 11231A</code></pre>
<p>Our telephone number is <code>(516)555-1340</code>

<p>Or e-mail us at <a href="mailto:smith@acme.com">smith@acme.com</A>

</body>

[Back to the Assignments List]