title文档标题/title
link rel=stylesheet href="http://www.123-seo,cn/dhtmlet.css" type="text/css"
/head
而在XML中,你应该如下例所示在声明区中加入:
? xml-stylesheet type="text/css" href="http://www.123-seo.cn/dhtmlet.css" ?
定义内部样式块对象 (Embedding a Style Block)
你可以在你的HTML文档的HTML和BODY标记之间插入一个STYLE.../STYLE块对象。 定义方式请参阅样式表语法。示例如下:
html
head
title文档标题/title
style type="text/css"
!--
body {font: 10pt "Arial"}
h1 {font: 15pt/17pt "Arial"; font-weight: bold; color: maroon}
h2 {font: 13pt/15pt "Arial"; font-weight: bold; color: blue}
p {font: 10pt/12pt "Arial"; color: black}
--
/style
/head
body
请注意,这里将style对象的type属性设置为"text/css",是允许不支持这类型的浏览器忽略样式表单。