常用标签
<h>标签
<h1>一号字体</h1>
<h2>二号字体</h2>
<h3>三号字体</h3>
<p>标签
<p>
段落元素由p标签定义。
</p>
<a>标签
<a href="https://www.baidu.com">超链接至百度</a> //href链接地址
<table>标签
<table>
<tr>
<th>序号</th> //th表头,加粗加黑
<th>姓名</th>
<th>年龄</th>
</tr>
<tr>
<td>1</td>
<td>张三</td>
<td>18</td>
</tr>
<tr>
<td>2</td>
<td>李四</td>
<td>19</td>
</tr>
</table>
<img>标签
<img src="https://www.baidu.com/img/bd_logo1.png"> //src 图片地址
<select>标签
<select>
<option>选项1</option>
<option>选项2</option>
<option>选项3</option>
</select>
<ol>标签
<ol> //带序号的列表标签ol,不带序号的列表标签ul;
<li>列表1</li>
<li>列表2</li>
<li>列表3</li>
</ol>
<input>标签
<input type="text" name="input1" value="123">
<input type="submit" name="input2" value="submit">