属性
属性 |
属性值 |
说明 |
① 通用属性:id、class、title、style、dir、lang、xml:lang |
nbsp;
示范
<address title="联系我们">联系信息</address>
范例
下面的例子显示了XHTML文件基础结构:
运行打印
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>元素address</title>
</head>
<body>
<h2>A brief history of HTML</h2>
<p>HTML was originally developed by Tim Berners-Lee while at CERN, and popularized by the Mosaic browser developed at NCSA.</p>
<p style="color:navy">HTML 2.0 (1995年11月, 参见 [RFC1866]) 是在1994年年末开发的。</p>
<address>liuming QQ: 395310500 feb12345@163.com</address>
</body>
</html>
虽然address元素的外观显示效果和普通斜体文字(例如
em、
i等元素)没什么区别,但它们各自表示意义不一样,而且利用address更有利于搜索引擎或其他工具索引该页面的地址信息。
参阅
无