分享
 
 
 

[XHTML Tutorial] 走向XHTML标准 (5)(XHTML DTD)

王朝html/css/js·作者佚名  2006-01-09
窄屏简体版  字體: |||超大  

原文地址:http://www.w3schools.com/xhtml/xhtml_syntax.asp

翻译:范维肖

The XHTML standard defines three Document Type Definitions.

The most common is the XHTML Transitional.

XHTML标准定义了三种文档类型定义,而其中最普通的是XHTML过渡型类型定义

The <!DOCTYPE> Is Mandatory

<!DOCTYPE>标记是强制性的

An XHTML document consists of three main parts:

一个XHTML文档是由下面三个主要部分构成的

the DOCTYPE

the Head

the Body

The basic document structure is:

基本的文档结构是:

<!DOCTYPE ...>

<html>

<head>

<title>... </title>

</head>

<body> ... </body>

</html>

The DOCTYPE declaration should always be the first line in an XHTML document.

DOCTYPE的声明应该总是出现在一个XHTML文档的第一行

An XHTML Example

一个XHTML的例子

This is a simple (minimal) XHTML document:

这是一个简单的XHTML文档的例子

<!DOCTYPE html

PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"

"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html>

<head>

<title>simple document</title>

</head>

<body>

<p>a simple paragraph</p>

</body>

</html>

The DOCTYPE declaration defines the document type:

DOCTYPE的声明定义了文档类型

<!DOCTYPE html

PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"

"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

The rest of the document looks like HTML:

文档剩下的部分看起来比较像HTML了

<html>

<head>

<title>simple document</title>

</head>

<body>

<p>a simple paragraph</p>

</body>

</html>

The 3 Document Type Definitions

3种文档类型定义

1.DTD specifies the syntax of a web page in SGML.

2.DTD is used by SGML applications, such as HTML, to specify rules that apply to the markup of documents of a particular type, including a set of element and entity declarations.

3.XHTML is specified in an SGML document type definition or 'DTD'.

4.An XHTML DTD describes in precise, computer-readable language the allowed syntax and grammar of XHTML markup.

1.DTD指明了在SGML(通用标记语言标准)下的网页的语法

2.DTD被SGML应用程序所使用,像HTML,为了指明一种特定类型文档的标记的规则,它包括一个对元素和整个实体声明的设定。

3.XHTML被指定在一个SGML文档类型或DTD中

4.XHTML DTD的精确描述,使得计算机能够识别的语言允许语法和XHTML标记的文法可以使用。

There are currently 3 XHTML document types:

三种XHTML文档类型:

STRICT

TRANSITIONAL

FRAMESET

严格型

过渡型

框架型

XHTML 1.0 specifies three XML document types that correspond to three DTDs: Strict, Transitional, and Frameset.

XHTML 1.0指明了三种XML文档类型来适应三种DTD:严格型,过渡型和框架型

XHTML 1.0 Strict

严格型

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> Use this when you want really clean markup, free of presentational clutter. Use this together with Cascading Style Sheets.

当你想要整洁干净的标记,避免表现层的混乱,把它和CSS一起使用

XHTML 1.0 Transitional

过渡型

<!DOCTYPE html

PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"

"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

Use this when you need to take advantage of HTML's presentational features and when you want to support browsers that don't understand Cascading Style Sheets.

当你需要充分利用HTML的表现层的特性或者当你想支持那些不支持CSS的浏览器的时候你可以使用过渡型。

XHTML 1.0 Frameset

<!DOCTYPE html

PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"

"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">

Use this when you want to use HTML Frames to partition the browser window into two or more frames.

当你使用HTML框架把一个浏览器窗口分割成两个或多个时候使用框架型结构

(转载请注明出处)

The <!DOCTYPE> Is Mandatory

<!DOCTYPE>标记是强制性的

An XHTML document consists of three main parts:

一个XHTML文档是由下面三个主要部分构成的

the DOCTYPE

the Head

the Body

The basic document structure is:

基本的文档结构是:

<!DOCTYPE ...>

<html>

<head>

<title>... </title>

</head>

<body> ... </body>

</html>

The DOCTYPE declaration should always be the first line in an XHTML document.

DOCTYPE的声明应该总是出现在一个XHTML文档的第一行

An XHTML Example

一个XHTML的例子

This is a simple (minimal) XHTML document:

这是一个简单的XHTML文档的例子

<!DOCTYPE html

PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"

"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html>

<head>

<title>simple document</title>

</head>

<body>

<p>a simple paragraph</p>

</body>

</html>

The DOCTYPE declaration defines the document type:

DOCTYPE的声明定义了文档类型

<!DOCTYPE html

PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"

"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

The rest of the document looks like HTML:

文档剩下的部分看起来比较像HTML了

<html>

<head>

<title>simple document</title>

</head>

<body>

<p>a simple paragraph</p>

</body>

</html>

The 3 Document Type Definitions

3种文档类型定义

1.DTD specifies the syntax of a web page in SGML.

2.DTD is used by SGML applications, such as HTML, to specify rules that apply to the markup of documents of a particular type, including a set of element and entity declarations.

3.XHTML is specified in an SGML document type definition or 'DTD'.

4.An XHTML DTD describes in precise, computer-readable language the allowed syntax and grammar of XHTML markup.

1.DTD指明了在SGML(通用标记语言标准)下的网页的语法

2.DTD被SGML应用程序所使用,像HTML,为了指明一种特定类型文档的标记的规则,它包括一个对元素和整个实体声明的设定。

3.XHTML被指定在一个SGML文档类型或DTD中

4.XHTML DTD的精确描述,使得计算机能够识别的语言允许语法和XHTML标记的文法可以使用。

There are currently 3 XHTML document types:

三种XHTML文档类型:

STRICT

TRANSITIONAL

FRAMESET

严格型

过渡型

框架型

XHTML 1.0 specifies three XML document types that correspond to three DTDs: Strict, Transitional, and Frameset.

XHTML 1.0指明了三种XML文档类型来适应三种DTD:严格型,过渡型和框架型

XHTML 1.0 Strict

严格型

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> Use this when you want really clean markup, free of presentational clutter. Use this together with Cascading Style Sheets.

当你想要整洁干净的标记,避免表现层的混乱,把它和CSS一起使用

XHTML 1.0 Transitional

过渡型

<!DOCTYPE html

PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"

"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

Use this when you need to take advantage of HTML's presentational features and when you want to support browsers that don't understand Cascading Style Sheets.

当你需要充分利用HTML的表现层的特性或者当你想支持那些不支持CSS的浏览器的时候你可以使用过渡型。

XHTML 1.0 Frameset

<!DOCTYPE html

PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"

"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">

Use this when you want to use HTML Frames to partition the browser window into two or more frames.

当你使用HTML框架把一个浏览器窗口分割成两个或多个时候使用框架型结构

(转载请注明出处)

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有