Web Site Design Lesson Plans

Lesson plans for high school web site design courses.

Skeleton

Use the code below to start a W3C standards compliant web page. The code follows these standards:


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-type" content="text/html; charset=UTF-8" />
<title>Page Title Goes Here</title>

<meta http-equiv="Content-Language" content="en-us" />
<meta name="author" content="Your Name Goes Here" />

<style type="text/css" media="all">
</style>
</head>

<body>
<!--  Page content goes here -->

</body>

</html>
  • Share/Bookmark