Web
Design

Fall 2006
course
navigation

Fri Sep 22

preliminaries

Design

XHTML take 1

First, what is XML?

Answer: text like this.
<person> <name>Jim Mahoney</name> <zip>05344</zip> <contact phone='xxx xxxx' email='yyy@yyyy' /> </person>

XHTML take 1

lowercase : <h1>This is the title</h1> closing slash: <hr /> close all tags: <p>This is a paragraph.</p> quotes on attributes: <div name="george"><img src="logo.gif" /></div> attribute have values: HTML: <INPUT TYPE=checkbox CHECKED> XHTML: <input type="checkbox" checked="checked" /> proper nesting: <p>It <strong>works!</strong></p> no '<' or '>' or '&' HTML: A < B & B > C XHTML: A &lt; B &amp; B &gt; C No '--' in comments HTML: <!-- --------- --> XHTML: <!-- - - - - - - --> first thing in .html file: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <head> <title> ... Your Title Here ... </title> <link rel="stylesheet" href="styles.css" type="text/css" /> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> </head> <body> <div id="enclosure"> <h1> ... Your Title Here ... </h1> <img src="logo.png" alt="Company Logo" /> <p> ... your text goes here ... </p> <p> ... and some more text ...</p> </div> <!-- end enclosure --> </body>

CSS take 1

<style type="text/css"> body { color: purple; /* yuch */ background-color: #d8da3d; } </style> <span style="color:red; background-color:black">Hi there.</span> /* form styles */ @import url("forms.css"); <style> p { color: red; } .big { font-size: 200%; } #first { padding: 10em; } </style> <p id="first">This one has padding.</p> <p>This one will be red</p> <p class="big">This one is big.</p> <p class="big">And so is this.</p>

Seeing it in action

More depending on available time

CSS concepts

more XML

http://cs.marlboro.edu/ courses/ fall2006/web_design/ notes/ sep_22
last modified Friday September 29 2006 4:22 pm EDT

attachments [paper clip]

     name last modified size
[TXT]xhtml1-transitional_dtd.txt Sep 22 2006 1:48 am 32.1kB