一个简单的html
<html>
<head>
<title> 我的一个html</title>
</head>
<body>
<h1> headding 1</h1>
<h2> headding 2</h2>
<h3> headding 3</h3>
<h4> headding 4</h4>
<h5> headding 5</h5>
<h6> headding 6</h6>
<!-- this a common -->
<br>
<br/>
<p title="title"> this is a paragraph</p>
<a href="http://www.baidu.com">this is a link</a>
<img src="CIMG3682.JPG" width="268" height="222" />
<br/>
<b> This text is bold</b>
<br/>
<strong >This text is strong </string>
<br/>
<big>This text is bit</big>
<br/>
<em>This text is emhasized</em>
<br/>
<i>This text is itallic</i>
<br/>
<small>This text is small</small>
<br/>
This text contains <sub> subscript </sub>
<br/>
This textcontains <sup>superscrip</sup>
<a name="tips"> useful tips section</a>
<br/>
<a href= "http://www.chuanke.com/help.htm#tips"> visit the useful tips section </a>
<table border="1">
<tr>
<td>row1, cell 1</td>
<td>row1, cell 2</td>
</tr>
<tr>
<td>row2, cell 1</td>
<td>row2, cell 2</td>
</tr>
</table>
<!-- 无序列表 -->
<ul>
<li> Coffee</li>
<li> Mile</li>
</ul>
<!-- 有序列表 -->
<ol>
<li> Coffee</li>
<li> Mile</li>
</ol>
<!-- 自定义列表 -->
<dl>
<dt> Coffee</dt>
<dd> Black hot drink </dd>
<dt> Milk</dt>
<dd> White cold drink </dd>
</dl>
</body>
</html>
在头上加<!DOCTYPE html>则表示为html5