HTML Workshop Agenda 7/26/2006. Stuff from Last Week Cache, history, URL chopping View Source...

10
HTML Workshop Agenda 7/26/2006

Transcript of HTML Workshop Agenda 7/26/2006. Stuff from Last Week Cache, history, URL chopping View Source...

Page 1: HTML Workshop Agenda 7/26/2006. Stuff from Last Week  Cache, history, URL chopping  View Source results.

HTML Workshop

Agenda 7/26/2006

Page 2: HTML Workshop Agenda 7/26/2006. Stuff from Last Week  Cache, history, URL chopping  View Source results.

Stuff from Last Week

Cache, history, URL chopping View Source results

Page 3: HTML Workshop Agenda 7/26/2006. Stuff from Last Week  Cache, history, URL chopping  View Source results.

HTML Page Structure

Document Type Definition or DTD (what it is) e.g., <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">

Head (abstract, above everything else)

Body (Meat and potatoes, where the work gets done)

Page 4: HTML Workshop Agenda 7/26/2006. Stuff from Last Week  Cache, history, URL chopping  View Source results.

Today

Learn the basics of HTML Learn the critical standard sources

– W3C– Section 508

Create/edit and validate code

Page 5: HTML Workshop Agenda 7/26/2006. Stuff from Last Week  Cache, history, URL chopping  View Source results.

Structure of a Tag

Tag opener<tagname attribute="value" attribute2="value">

Content affected (if appropriate) Tag closer (if possible)

</tagname>

Page 6: HTML Workshop Agenda 7/26/2006. Stuff from Last Week  Cache, history, URL chopping  View Source results.

Clean (Best Practice) HTML

Code to standards Maintain 508 (or better) compliance <!-- Well commented --> Nested tags (FILO) Ending tags when appropriate Use white space within HTML Use attributes and put within simple

quotes

Page 7: HTML Workshop Agenda 7/26/2006. Stuff from Last Week  Cache, history, URL chopping  View Source results.

More on 508

Keep the goal in mind– www.section508.gov/

Alt tag images Avoid frames Use table headers "properly"

Page 8: HTML Workshop Agenda 7/26/2006. Stuff from Last Week  Cache, history, URL chopping  View Source results.

Test Your Work

Check for compliance (with laws) Check for validity (with standards)

Page 9: HTML Workshop Agenda 7/26/2006. Stuff from Last Week  Cache, history, URL chopping  View Source results.

Resources www.w3c.org/ www.htmlhelp.com/reference/ webstandards.org/learn/ www.google.com/ search for "html

primer"

www.section508.gov/ www.contentquality.com/

Page 10: HTML Workshop Agenda 7/26/2006. Stuff from Last Week  Cache, history, URL chopping  View Source results.

Homework

Modify the demo web page