Web Design 1
CDGD304 - Fall 2011
Mondays 2:00pm - 6:00pm
http://bit.ly/massart-304
Mondays 2:00pm - 6:00pm
http://bit.ly/massart-304
Run Boston-based Web Consultancy Cykod
Weekly Reading, Assignments, & Critiques,
Wikipedia Says:(The lunatics are running the asylum)
<!DOCTYPE html>
<html>
<head> .. Head Goes Here ... </head>
<body>
<header id='site-header'>
<h1 class='logo'>My Awesome Website</h1>
<nav id='main-nav'>
<ul>
<li><a href='item1.html'>Item 1</a></li>
<li><a href='item2.html'>Item 2</a></li>
</ul>
</nav>
</header>
<div id='site-wrapper'>
<section id='site-content'>
<article>
<h1>Header</h1>
<p>Lorem Ipsum</p>
</article>
</section>
</div>
<footer id='site-footer'> ... Footer Content ... </footer>
</body>
</html>
<head>
<title>My Web Page</title>
<link rel='stylesheet' href='style.css'>
<script src='jquery.min.js'></script>
<script src='application.js'></script>
</head>
... Site Content ...
Go to yourname.github.com/web304/class1
wasn't that easy?
(don't worry we'll do it all over again next week)
(at least what we call fun)