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:
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>