1、链接元素
<a href="https://www.php.cn">PHP中文网</a>
2、列表元素
<ul>
<li>时间:</li>
<li>地点:</li>
<li>人物:</li>
<li>事件:</li>
</ul>
<ol>
<li>时间:</li>
<li>地点:</li>
<li>人物:</li>
<li>事件:</li>
</ol>
3、表格元素
<table border="1">
<caption style="color:red;font-size:25px;">信息统计表</caption>
<thead>
<th>序号</th>
<th>姓名</th>
<th>性别</th>
<th>年龄</th>
</thead>
<tbody>
<tr>
<td>1</td>
<td>张三</td>
<td>男</td>
<td>18</td>
</tr>
<tr>
<td>2</td>
<td>李四</td>
<td>女</td>
<td>16</td>
</tr>
<tr>
<td>2</td>
<td>王五</td>
<td>女</td>
<td>18</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>滴滴:</td>
</tr>
</tfoot>
</table>
4、表单元素
<form action="" method="POST">
<h2>用户注册</h2>
<section>
<label for="username" >用户名:</label>
<input type="text" name="username" id="username" placeholder="手机/邮箱" minlength="6" maxlength="18" size="20" autofocus/>
</section>
<section></section>
<label for="password">密码:</label>
<input type="password" id="password" name="password" placeholder="由字母、数字组成" minlength="6" size="20" required>
</section>
<section>
<label >性别</label>
<input type="radio" name="sex" id="male" value="男"/><label for="male" >男</label>
<input type="radio" name="sex" id="female" value="女"/><label for="female" >女</label>
</section>
<section>
<label for="">爱好:</label>
<input type="checkbox" name="hobby[]" value="read" checked/>读书
<input type="checkbox" name="hobby[]" value="sport" />写字
<input type="checkbox" name="hobby[]" value="travle"/>跑步
</section>
<input type="submit" value="提交" />
</form>