您的位置:
寻梦网首页
>
编程乐园
>
HTML园地
>
HTML实用教程
梦之都
HTML教程
,
col colgroup 标签
示例.
域名数量介绍
.com域名的数量
.cn域名的数量
.net域名的数量
.com.cn域名的数量
2003年
1000
2000
3000
4000
2004年
4000
5000
6000
7000
2005年
7000
8000
9000
10000
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>HTML colgroup col示例</title> <style type="text/css"> .yellow { color: #CCCC33; font-size:36px; } .blue { color: #3399CC; font-size:12px; } </style> </head> <body> <p>梦之都
HTML教程
,<strong><a href="http://www.dreamdu.com/xhtml/">col colgroup 标签</a></strong>示例.</p> <table width="80%" border="1" summary="介绍域名的数量."> <colgroup> <col /> <col class="yellow" /> <col /> <col span="2" class="blue" /> </colgroup> <caption align="center"> 域名数量介绍 </caption> <tr> <th> </th> <th>.com域名的数量</th> <th>.cn域名的数量</th> <th>.net域名的数量</th> <th>.com.cn域名的数量</th> </tr> <tr> <td>2003年</td> <td>1000</td> <td>2000</td> <td>3000</td> <td>4000</td> </tr> <tr> <td>2004年</td> <td>4000</td> <td>5000</td> <td>6000</td> <td>7000</td> </tr> <tr> <td>2005年</td> <td>7000</td> <td>8000</td> <td>9000</td> <td>10000</td> </tr> </table> </body> </html>