Session 1

Monday, 4 August, 6pm

Structure and Style

Concepts (10 mins)

Application (20 mins)

Attaching Styles

Concepts (10 mins)

Application (20 mins)

Review and Assignment (10 mins)

Session 2

Tuesday, 5 August, 6pm

Stylizing Built-in Structure

Concepts (10 mins)

Application (20 mins)

Custom Structure

Concepts (10 mins)

Application (20 mins)

Review and Assignment (10 mins)

Session 3

Thursday, 7 August, 6pm

Review (1 hour)

XHTML: Structure of a page

CSS: Styling a page

CSS: Styling structure

Session 4

Monday, 11 August, 6pm

Positioning with CSS

Concepts (10 mins)

Application (40 mins)

Review and Assignment (10 mins)

Session 5

Tuesday, 12 August, 6pm

Tables

Concepts (10 mins)

Application (30 mins)

Colors and Images

Concepts (10 mins)

Application (10 mins)

<area shape="rect" href="mypage.html" coords="26,185 238,185"> </map

Code used in this class


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"

"httphttp://www.w3.org/TR/2000/REC-xhtml1-20000126/DTD/xhtml1-strict.dtd">


<html xmlns="httphttp://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>


<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />


<meta name="keywords" content="xhtml, web class, usp," />
<meta name="description" content'="This is a sample page used in an XHTML class" />
<meta name="author" content="christopjdfgsdggdgdsf" />


<title>
The first XHTML session!
</title>
<link rel="stylesheet" type="text/css" href="styles.css" />


<style type="text/css" media="all">@import "css2.css";
</style>

</head>
<body>
<div id="menu">
<a class="menu" href="brucealmighty.html">Bruce Almighty</a> |


<a class="menu" href="dumbanddumber.html">Dumb and Dumber</a> |


<a class="menu" href="oceans11.html">Oceans 11</a> |

<a class="menu" href="hollywoodhomicide.html">Hollywood Homicide</a>

</div>
<div id="content"> Here we are on the first day thinking of something to say.Here we are on the first day thinking of something to say.
<p />
Girls I have kissed
<ul>
<li style="color:#ff0000; font-size:50px;">Kathryn</li>
<li>Emma</li>
<li>Shelly</li>
</ul>

Girls I have not kissed
<ol>
<li>Dara</li>
<li>Lorraine</li>
<li>Cheryl</li>
</ol>

<map name="cloud">
<area shape="rect" href="help.html" coords="51,24 106,51">
<area shape="rect" href="link2.html" coords="129,24 191,46">
</map>

<img usemap="#cloud" src="images/cloud.gif" alt="another picture of a cloud" /> Here <a href="page2.html">we are on the first day</a> thinking of something to say.
<br />Here we are on the first day thinking of something to say.
<p />
<table>
<tr>
<td colspan="2"> this is the happy title of this table
</td>
</tr>
<tr>
<td class="left">
column1
<br />
link 2
<br />link 3
<br />link 4
</td>
<td class="right">column 2 is tro the rigfht of the first column</td>
</tr>

</table>

</div>

</body></html>


Assignment (10 mins)

Extra Session

Tuesday 12 August, 6pm

Javascript

Since we've been learning so quickly, we have time for one sessions on Javascript before we talk about usability and design

Concept: Document Object Model

Application: Javascript Rollover (status and image)

onmouseout="window.status='Goodbye Cruel World!';return true;">Hello What?</a>

onmouseout="window.document.my_rollover.src='image.gif'">

Concept: Functions and Arrays

Application: Slide Show

<img src="images/cover.gif" width="237" height="299" alt="a story about what happens when the rooster goes to the city" name="myPicture">

<script type="text/javascript" src="slideshow.js"></script>


var myPix = new Array("images/cover.gif", "images/1.gif","images/2.gif","images/3.gif","images/4.gif","images/5.gif","images/6.gif")

var thisPic = 0;

function processNext() {

if (document.images && thisPic < 6) {

thisPic++;

} else { thisPic = 0; } document.myPicture.src=myPix?thisPic

}


<a href="javascript:processNext()">Next</a>

Take home Project

Downloads

download all the files associated with today's workshop httphere

Session 6

Thursday, 14 August, 6pm

The User

Concepts (10 mins)

Application (30 mins)

User-focused content

Content-categorization

Usability testing and Heuristics

Review (10 mins)

FINAL PROJECT (10 mins)

XHTML web page with an external style sheet (styles.css) that utlizes all of the following tags.

XHTML

CSS


Last edited on August 11, 2003 8:42 pm.