梦之都
HTML教程
,
abbr 属性
示例.
梦之都统计的.com域名的数量
梦之都统计的.cn域名的数量
梦之都统计的.net域名的数量
在梦之都2003年注册的域名
1000
2000
3000
在梦之都2004年注册的域名
4000
5000
6000
在梦之都2005年注册的域名
7000
8000
9000
<head>
<title>HTML abbr 属性示例 -- HTML教程,XHTML教程</title> </head> <body> <p>梦之都 <a href="http://www.dreamdu.com/xhtml/">HTML教程</a>,<strong><a href="http://www.dreamdu.com/xhtml/attribute_abbr/">abbr 属性</a></strong>示例.</p> <table width="80%" border="1"> <tr> <th> </th> <th abbr="com domain">梦之都统计的.com域名的数量</th> <th abbr="cn domain">梦之都统计的.cn域名的数量</th> <th abbr="net domain">梦之都统计的.net域名的数量</th> </tr> <tr> <th abbr="2003s">在梦之都2003年注册的域名</th> <td>1000</td> <td>2000</td> <td>3000</td> </tr> <tr> <th abbr="2004s">在梦之都2004年注册的域名</th> <td>4000</td> <td>5000</td> <td>6000</td> </tr> <tr> <th abbr="2005s">在梦之都2005年注册的域名</th> <td>7000</td> <td>8000</td> <td>9000</td> </tr> </table> </body> </html>