30

Lesson 3: XHTML Coding

  • Upload
    cecily

  • View
    42

  • Download
    0

Embed Size (px)

DESCRIPTION

Lesson 3: XHTML Coding. Lesson 3 Objectives. Define markup tags Identify XHTML document structure tags Prepare your development environment Define and use style sheets Use paragraph formatting and block-level elements Use text-level elements Use ordered and unordered lists - PowerPoint PPT Presentation

Citation preview

Page 1: Lesson 3: XHTML Coding
Page 2: Lesson 3: XHTML Coding

Copyright © 2004 ProsoftTraining, All Rights Reserved.

Lesson 3:XHTML Coding

Page 3: Lesson 3: XHTML Coding

Lesson 3 Objectives• Define markup tags• Identify XHTML document structure tags• Prepare your development environment• Define and use style sheets• Use paragraph formatting and block-level

elements• Use text-level elements• Use ordered and unordered lists• Use comments and good coding practices

Page 4: Lesson 3: XHTML Coding

Markup Tags• Markup tags are element names

enclosed in angle brackets, or wickets < >– Tags are key to markup files– Tags embed the markup element

information in the document so that a user agent (e.g., browser) will render text as instructed by the associated element

– The combination of markup tags and standard text is loosely referred to as either "code" or "markup"

Page 5: Lesson 3: XHTML Coding

Container Tags• Two types of tags: container and empty• Container tags contain page text between an opening

and a closing tag, as shown• Container tags are also known as non-empty tags• XHTML requires the use of container or non-empty tags

Opening Tag

<title> My Home Page </title>

Closing Tag

Page 6: Lesson 3: XHTML Coding

Empty Tags• An empty tag does not use a closing tag• Used in HTML only, Transitional or Frameset flavor• Never used in XHTML; code will not validate if you use

empty tags

Empty Tags

<li> This is an item in a list <li> This is another item

Do not use empty tags!

They are not valid in XHTML

Page 7: Lesson 3: XHTML Coding

Alternative Non-Empty Tag

• HTML and XHTML allow alternative notation for stand-alone non-empty tags

• Place the slash ( / ) after the element name (before the closing wicket), rather than before the element name like in a standard closing tag:

<title/> My Home Page

• All XHTML tags must be closed (using either a pair of container tags or the stand-alone non-empty tag)

Page 8: Lesson 3: XHTML Coding

What Constitutes a Tag?• An element• An attribute• A value

Page 9: Lesson 3: XHTML Coding

Document Structure Tags• Every XHTML document must have the following

document structure components to render as expected and validate:– A <!DOCTYPE> tag– The <html> </html> tag – The <head> </head> tag– Any <meta/> tags– A <link/> tag reference to a style sheet (recommended)– The <title> </title> tag– The <body> </body> tag

Page 10: Lesson 3: XHTML Coding

Document Structure Tags (cont'd)

Page 11: Lesson 3: XHTML Coding

Are XHTML Tags Case-Sensitive?

• XHTML tags are case-sensitive and should always be typed in lowercase letters

• By contrast, HTML tags are not case-sensitive

Page 12: Lesson 3: XHTML Coding

Document Type Declaration (DOCTYPE)• An SGML statement that describes the nature

of your code• Placed at the top of the document using the

<!DOCTYPE> tag• If you do not specify a DOCTYPE, then two

problems may arise:– You will not be able to control how your code

renders in the future– You will not be able to use a markup validator

• Each version and flavor of HTML/XHTML has its own DOCTYPE

Page 13: Lesson 3: XHTML Coding

The <html> and <head> Tags• The <html> </html> tags encompass all

other HTML or XHTML elements in the document– Takes various attributes

• The <head> </head> tags encompass several document elements, including:– The <meta/> tag– The <link/> tag that references a CSS file, if

present– The <title> </title> tags

Page 14: Lesson 3: XHTML Coding

The <body> tag• All content to be displayed on the page

through the user agent must be enclosed between the <body> </body> tags– The <body> tag takes many attributes,

including:• bgcolor• background• link

– Values accompany attributes, and must be enclosed in quotation marks in XHTML

Page 15: Lesson 3: XHTML Coding

Web Site File Structure

• When creating a Web page, you must consider the site’s file structure

• Your XHTML/HTML and image files will be uploaded to a server eventually, so it is always good practice to organize your files

Page 16: Lesson 3: XHTML Coding

Preparing Your Development Environment

• Obtain a text editor• Install multiple browsers • Set file preferences

Page 17: Lesson 3: XHTML Coding

Style Sheets• A technology that adds formatting and

structure to your pages• A style sheet is simple text file that contains

instructions• If all pages on your site are linked to the same

style sheet, then one simple change to the style sheet will change all specified elements across the site

• Strict flavors of HTML and XHTML require that you use style sheets

Page 18: Lesson 3: XHTML Coding

CSS Terminology

• Proper CSS structure• Inheritance• CSS and XHTML• Benefits of using CSS• Style sheets and compatibility

Page 19: Lesson 3: XHTML Coding

Paragraph Formatting and Block-Level Elements

• Block-level markup elements– Affect entire paragraphs or multiple

paragraphs• The <p> tag• The <br/> tag

• Text-level markup elements– Elements that can affect as little as a single

character or word• <bold> or <strong>• <i> or <em>

Page 20: Lesson 3: XHTML Coding

Heading Levels• Block-level element• Heading levels 1

through 6– <h1> </h1>– <h2> </h2>– <h3> </h3>– <h4> </h4>– <h5> </h5>– <h6> </h6>

Page 21: Lesson 3: XHTML Coding

Tag Nesting in Markup

• Placing one pair of tags between another– Proper: <h1> <i> ... </i> </h1>– Improper: <h1> <i> ... </h1> </i>

• Improper: The <i> tag is opened within the <h1> tags, but closed after the </h1> tag

• If you fail to properly nest code, your pages may still render in some user agents, but they will not validate and may fail to render in the future

Page 22: Lesson 3: XHTML Coding

Primitive Formatting with the <pre> Tag

• The <pre> tag retains formatting on preformatted text

• Can be used to retain tabular format, spacing

• All text between <pre> </pre> tags will render as formatted in the HTML file

Page 23: Lesson 3: XHTML Coding

Indenting and Centering Text• The <div> tag• Alternatively, use <p align= "center">

</p>• The <blockquote> tag can also be used

to indent (but not center) text

Page 24: Lesson 3: XHTML Coding

Text-Level Elements• Bold, italic and underlined text• Bold:

– <b> and <strong>• Italic:

– <i> and <em>• Underlined text:

– <u>

Page 25: Lesson 3: XHTML Coding

Font Style Elements vs. Phrase Elements

• The <b> element is a font style element, <strong> is a phrase element; both create boldface text

• The same is true of <i> and <em>, respectively, which both create italic or emphasized text

• The difference is that <b> specifically means apply the bold font style, whereas <strong> indicates that the text is to be given a strong appearance

• In short, <b> represents a font appearance instruction, whereas <strong> represents the weighting of the phrase relative to surrounding text

Page 26: Lesson 3: XHTML Coding

The <code>, <kbd> and <samp> Tags

• All make text appear in a fixed-width font in an HTML 4.0-compliant browser window

• Available to both HTML 4.0 and XHTML

Page 27: Lesson 3: XHTML Coding

Lists

• Two types of lists:• Ordered

– A numbered list– Uses the <ol> element and requires a closing tag

</ol>• Unordered

– A bulleted list– Uses the <ul> element and requires a closing tag

</ul>

Page 28: Lesson 3: XHTML Coding

Lists (cont'd)

• Ordered list code:<h2> Ordered List </h2><ol><li> This is the first numbered item </li><li> This is the second numbered item </li><li> This is the last numbered item </li></ol>

• Unordered list code:<h2> Unordered List </h2><ul><li/> This is the first bulleted item<li/> This is the second bulleted item<li/> This is the last bulleted item</ul>

Page 29: Lesson 3: XHTML Coding

Good Coding Practice• Create code that can be easily read by others• Exceptions:

– Some code might encounter problems if it includes random spaces

– Always test your code in multiple browsers and validate it

• Adding hidden comments: <!-- Text inside these brackets will not appear -->

• Use comments to annotate code or document changes

Page 30: Lesson 3: XHTML Coding

Lesson 3 SummaryDefine markup tags Identify XHTML document structure tagsPrepare your development environmentDefine and use style sheetsUse paragraph formatting and block-level elementsUse text-level elementsUse ordered and unordered listsUse comments and good coding practices