Assignment 1: Examples

Create a web page that has links to several web sites. These sites will fall into three categories: Sites that you think show good design, sites that you think show bad design, and sites that have features that you would like to be able to create for your web page. You will create this web page on a floppy disk/jump drive/ or e-mail it to yourself and present it to the class on Wednesday. You will need to store this page on the server and reference it from your server home page. (But this will be done next week)

Here is a set of tags that could be used to create this page. <HTML> <HEAD> <TITLE>Interesting Pages</TITLE> <STYLE> H2 { color: blue; text-align: center; font-family: "comic sans ms"; } H3 { color: blue; text-align: left; font-family: arial, helvetica, sans-serif; } BODY { background-color: lightblue; color: black; font-family: arial, helvetica, sans-serif; } A:link, A:visited, A:active { font-size: medium; text-decoration: none; } A:link { color: green; } A:visited {color : black; } A:active { color: brown; } A:hover { color: red } </STYLE> </HEAD> <BODY> <H2><CENTER>Example Web Pages</CENTER></H2> <H3>Web Pages with Good Design</H3> <blockquote> <A href="http://www.amazon.com">Amazon.Com</A><BR> <A href="http://www.amazon.com">Amazon.Com</A><BR> <A href="http://www.amazon.com">Amazon.Com</A><BR> </blockquote> <H3>Web Pages with Bad Design</H3> <ul> <LI><A href="http://www. cs.uofs.edu/~sidbury">Dr. Sidbury's Page</A><BR> <LI><A href="http://www.amazon.com">Amazon.Com</A><BR> <LI><A href="http://www.amazon.com">Amazon.Com</A><BR> </ul> <H3>Web Pages with Features</H3> <A href="http://www.amazon.com">Amazon.Com</A><BR> <A href="http://www.amazon.com">Amazon.Com</A><BR> <A href="http://www.amazon.com">Amazon.Com</A><BR> </BODY> </HTML> See the page