Presentation is loading. Please wait.

Presentation is loading. Please wait.

1 Web Developer Foundations: Using XHTML Chapter 2 Key Concepts.

Similar presentations


Presentation on theme: "1 Web Developer Foundations: Using XHTML Chapter 2 Key Concepts."— Presentation transcript:

1 1 Web Developer Foundations: Using XHTML Chapter 2 Key Concepts

2 2 Learning Outcomes In this chapter, you will learn about: The development of HTML The transition from HTML to XHTML XHTML syntax, tags, and document type definitions The anatomy of a web page Formatting the body of a web page Formatting the text on a web page Physical and logical style tags Special Characters

3 3 What is HTML? The World Wide Web Consortium (http://w3c.org) sets the standards for HTML and its related languages. The set of markup symbols or codes placed in a file intended for display on a Web browser page. Each individual markup code is referred to as an element or tag. Each tag has a purpose. Tags are enclosed in angle brackets, " " symbols. Most tags come in pairs; an opening tag and a closing tag.

4 4 What is XHTML? The newest version of HTML is actually XHTML – eXtensible HyperText Markup Language. XHTML uses the tags and attributes of HTML along with the syntax of XML (eXtensible Markup Language). While many web pages and web authoring tools still use HTML, as a web developer you need to learn about XHTML – you will be seeing a lot of it in the future.

5 5 What’s wrong with HTML? The Web has changed from a medium used to display electronic versions of paper documents to a medium that provides diverse information for a variety of devices. HTML does not fit this need. HTML is a structural language – it was originally intended to markup printed documents for online viewing. With the expansion of the Web to include devices other than personal computers, the need for a descriptive rather than structural language became evident and XHTML was created.

6 6 XHTML XHTML was developed by the W3C to be the reformulation of HTML as an application of XML. XHTML combines the formatting strengths of HTML and the data structure and extensibility strengths of XML.

7 7 XML An XML document must be well-formed. Use lowercase Use opening and closing tags Close stand-alone tag with special syntax XML documents begin with an XML directive. The basic form of this directive is:

8 8 Document Type Definition (DTD) W3C Recommendation: Use a Document Type Definition to identify the type of markup language used in a web page. XTML 1.0 Transitional This is the least strict specification for XHTML 1.0. It allows the use of both Cascading Style Sheets and traditional formatting instructions such as fonts. We will use this for most of our coding in this text XHTML 1.0 Strict Requires exclusive use of Cascading Style Sheets. We will not use this. XHTML 1.0 Frameset Required for pages using XHTML frames. We will use this with our frames pages later in the text.

9 9 XHTML 1.0 Transitional DTD <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd>

10 10 First Web Page <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> an opening tag.... page info goes here a closing tag

11 11 Head & Body Sections Head Section -- Contains information that describes the web page document. …head section info goes here Body Section -- Used for text and tags that do show directly on the web page. …body section info goes here

12 12 XHTML and tags <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">.... Header info goes here.... Body info goes here

13 13 XHTML tag attributes bgcolor Configures the background color of a web page text Configures the color of the text on the web page Check the XHTML Reference in the Web Developers Handbook for more body tag attributes

14 14 XHTML tag attributes Heading tag Adds a heading Largest Largest next largest next largest large large small small smaller smaller smallest smallest Check the XHTML Reference in the Web Developers Handbook for header tag attributes

15 15 XHTML tag Paragraph tag …paragraph goes here Used to group sentences and sections of text together. Text that is contained by and tags will have a blank line above and below it.

16 16 XHTML tag Line Break tag Stand alone tag …text goes here This starts on a new line…. Used to force a new line when the text on the web page document is displayed by a browser.

17 17 XHTML Definition List Useful to display a list of terms and definitions or a list of FAQ and answers tag Contains the definition list tag Contains a defined term tag Contains a data definition

18 18 XHTML Definition List Example IP Internet Protocol TCP Transmission Control Protocol

19 19 XHTML Ordered List Used to convey information in an ordered fashion Contains the ordered list type attribute determines numbering scheme of list, default is numerals Contains an item in the list

20 20 XHTML Ordered List Example Apply to school Register for course Pay tuition Attend course

21 21 XHTML Unordered List Used to display information in bullet points Contains the unordered list type attribute determines the type of bullet point, default is disc Contains an item in the list

22 22 XHTML Unordered List Example TCP IP HTTP FTP

23 23 XHTML tag Preformatted Text tag The preformatted text tag preserves your formatting and displays the text in a fixed- width or monospace font. …text goes here Line breaks and formatting are preserved

24 24 XHTML tag Blockquote tag Used to indent a block of text for special emphasis. …text goes here

25 25 XHTML tag Font tag Used to format text Deprecated – will be dropped in future versions of XHTML Common attributes face -- configure the typeface or font name to be used to display the text. size – sets the size of the text color – configures the color of the textindent a block of This is large blue text.

26 26 XHTML tag attributes Font size: Size 1 Size 1 Size 2 Size 2 Size 3 Size 3 Size 4 Size 4 Size 5 Size 5 Size 6 Size 6 Size 7 Size 7 Font face: Jokerman Jokerman

27 27 XHTML Logical Style Tags Indicate the logical style used to display the text in between the container tags. Common Logical Style Tags To cause text to be emphasized or to "stand out" from surrounding text. Usually displayed in bold. This is important To cause text to be emphasized in relation to other text on the page. Usually displayed in italics. Please note

28 28 XHTML Physical Style Tags provide specific font instructions for the browser Logical Style tags are preferred by the W3C Physical Style tags are discussed because some web developers still use them Common Physical Style Tags To display as bold text This is important To display text in italics Please note

29 29 XHTML Special Characters Used to display special characters such as quotes, copyright symbol, etc. Character Code © © < < > > See the Special Characters section in the Web Developer’s Handbook for a detailed list (Page H-31)

30 30 Summary This chapter provided an introduction to XHTML. It began with an introduction to the HTML, discussed the transition to XHTML, continued with the anatomy of a web page, and introduced text and block-level formatting.


Download ppt "1 Web Developer Foundations: Using XHTML Chapter 2 Key Concepts."

Similar presentations


Ads by Google