- 1、本文档共42页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
Chapter 2 Introduction to XHTML 2.1 Origins and Evolution of HTML HTML was defined with SGML Original intent of HTML: General layout of documents that could be displayed by a wide variety of computers Recent versions: HTML 4.0 – 1997 Introduced many new features and deprecated many older features HTML 4.01 - 1999 - A cleanup of 4.0 XHTML 1.0 - 2000 Just 4.01 defined using XML, instead of SGML XHTML 1.1 – 2001 Modularized 1.0, and drops frames We’ll stick to 1.1, except for frames 2.1 Origins and Evolution of HTML (continued) Reasons to use XHTML, rather than HTML: HTML has lax syntax rules, leading to sloppy and sometime ambiguous documents– XHTML syntax is much more strict, leading to clean and clear documents in a standard form HTML processors do not even enforce the few syntax rule that do exist in HTML The syntactic correctness of XHTML documents can be validated 2.2 Basic Syntax Elements are defined by tags (markers) Tag format: Opening tag: name Closing tag: /name The opening tag and its closing tag together specify a container for the content they enclose 2.2 Basic Syntax (continued) Not all tags have content If a tag has no content, its form is name / The container and its content together are called an element If a tag has attributes, they appear between its name and the right bracket of the opening tag Comment form: !-- … -- Browsers ignore comments, unrecognizable tags, line breaks, multiple spaces, and tabs Tags are suggestions to the browser, even if they are recognized by the browser 2.3 HTML Document Structure Every XHTML document must begin with: ?xml version = ″1.0″? !DOCTYPE html PUBLIC ″-//w3c//DTD XHTML 1.1//EN″ /TR/xhtml11/DTD/xhtml11.dtd html, head, title, and body are required in every document The whole document must have html as its root html must have the xmlns attribute: html xmlns = ″/1999/xhtml″ A document consists of a head and a body The title tag is used to give the document a title, which is normally displayed in the brows
文档评论(0)