Training, Tutorials & Guides
Understanding XHTML: The code behind web pages
Free and in a lab
Time: 10:00 AM - 11:30 AM, 3/17/2011 (Thur) - OR - 3:00 PM - 4:30 PM, 4/6/2011 (Wed)
Location: Library 206
Instructors: Anne Arendt (WRS)
++ ALL ARE WELCOME ++
Covers working with XHTML (in Omni or elsewhere). It will include:
* How to read that XHTML garbly-gook (source code)
* How to fix that XHTML garbly-gook (source code) when things aren't doing what you think they would/should
* Understanding of XHTML tags (what they are and what they do)
You won't be an expert at anything (we cover a lot in a short time) but you will know more about what XHTML can do for you and where to get started.
There is space for thirty (30) people. If you want to reserve a spot you can contact me at anne.arendt@uvu.edu or else you can just show up (seating is first come first served).
In Class Materials
File from class: Handout (docx)
Basic empty XHTML file:
<!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>Untitled Document</title>
</head>
<body>
I am a demo file
</body>
</html>

