标准形式
<!DOCTYPEhtml>
<html>
 
<head>
<metacharset="utf-8">
<title>    </title>
</head>
 
<body><h1>我的第一个标题</h1>
<p>我的第一个段落。</p>
</body>
</html>
 
HTML段落
<p>  </p>
换行   <br>
 
HTML表格
<table>
<tr>
<td> </td><!--分割列-->
</tr><!--分割行-->
</table>
 
HTML列表
无序列表
<ul>
<li>zxy</li>
<li>zmm</li>
</ul>有序列表
<ol>
<li>Coffee</li>
<li>Milk</li>
</ol>HTML表单
文本域
<form>
First name: <input type="text" name="firstname"><br>
Last name: <input type="text" name="lastname">
</form>密码字段
<form>
Password: <input type="password" name="pwd">
</form>单选按钮
<input type="radio">
复选框
<input type="checkbox">
提交按钮
<input type="submit">
 
HTML链接
<ahref="http://www.google.com">这是一个链接</a>
 
HTML图像
<imgsrc="/images/logo.png"width="258"height="39">