9/16

Homework:

Strongly suggested reading chapters 10-15.

Project: Redesign and code your self-portrait (doesn't need to be a physical representation of you, but rather a conceptual representation of you).

The site must be comprised of a folder containing:

  • home page named index.html
  • a folder called css with your style.css inside
  • a folder for your images called img (store all images here, do not link to them from the web)
  • two additional html pages linked in your menu.
  • a menu that displays the same across all three pages
  • at least one page with a multiple column layout, designed using CSS and Divs not tables.
  • all links must work
  • all images must be stored locally
  • all design elements will be looked at as a choice.

We will have a public critique of this project in class next Friday. If it is not turned in by Thursday at noon it will not be accepted unless otherwise communicated.

BE ON TIME NEXT WEEK!

Example html from in class:

<!DOCTYPE html>

<html>

<head>

<link rel="stylesheet" type="text/css" href="style.css">

<title>Page Title</title>

</head>

<body>

<div id="menu">

<a href="index.html">HOME</a>

<a href="p1.html">PAGE 1</a>

<a href="p2.html">PAGE 2</a>

<a href="p3.html">PAGE 3</a>

</div>

<div id="container">

<div id="left">

<p>left div</p>

</div>

<div id="middle">

<p>middle div</p>

</div>

<div id="right">

<p>right div</p>

</div>

</div>

</body>

</html>