220 likes | 315 Views
XHTML Coding -- Tags. Beginning Web Site Creation: Dreamweaver CS4 Noreen Brown. XHTML = Tags. They come in matching pairs (mostly). Like this. Open Close <html> </html> <head> </head> <body> </body> <title> </title> < br /> <hr /> . <html> <head>
E N D
XHTML Coding -- Tags Beginning Web Site Creation: Dreamweaver CS4 Noreen Brown
XHTML = Tags They come in matching pairs (mostly) Like this • Open Close • <html> </html> • <head> </head> • <body> </body> • <title> </title> • <br /> • <hr /> <html> <head> Put header information here </head> <body> Put the contents of your web page here </body> </html>
A few rules . . . XHTML • All lowercase • Most of them are “paired” • <p> </p> • Empty tags need a space and a / • Good = XHTML <br /> • Bad = html <br> • Attributes need “ “ • Good = XHTML <p alignment = “center”> • Bad = html <p alignment = center> • Doctype declaration
Let’s get started Behind the scenes Center stage!
Add more text Behind the scenes It all squishes together!
Divide it up Behind the scenes Better <p> </p> Paragraph
Better still Behind the scenes Better <br /> Line break
Special Characters What if you want <body> or <p> to show up on your web page? <body> <p>
Alignment? Behind the scenes Center stage! <p align=“right”> </p> alignment goes into the first <p> tag.
One more thing Behind the scenes Better <hr /> Horizontal line
Fun with Headings! Behind the scenes OK, this is annoying . . .
Fun with Headings! Behind the scenes Much better! Ooops, no such thing as H7!
Ordered lists Behind the scenes Center stage!
Unordered lists Behind the scenes Center stage!
Definition lists Behind the scenes Center stage!
Format Text - Logical Behind the scenes Center stage! <strong> </strong> <em> </em>
Format Text - Nested Behind the scenes Center stage!
Format Text - Nested • Good • <strong><em>HELP!</em></strong> • Bad • <strong><em>HELP! </strong></em>
Links - Absolute Behind the scenes Center stage! Anchor tag <a> </a> Anchor tag with a web address <a “href=http://www.pcc.edu”> </a>
Links - Relative Behind the scenes Center stage! Anchor tag <a> </a> Anchor tag with a file name <a href="http://www.pcc.edu/"> pcc </a>
Sort of like a relative link . . . Images Behind the scenes Center stage! Image tag <img /> Image tag with a file name <img src="coffee-art.jpg" />
Alt Text Behind the scenes Center stage! Alt text <img src="coffee-art.jpg" alt="Lovely coffee!" />