GET / HTTP/1.1
Host: 127.0.0.1:9001
Upgrade-Insecure-Requests: 1
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1 Safari/605.1.15
Accept-Language: zh-cn
Accept-Encoding: gzip, deflate
Connection: keep-alive
- 块级标签:独占一行 p div
- 内联标签(行内标签):不独占一行 b i s u span img
- body
- b 加粗
- i 斜体
- s 删除
- u 下划线
- p 段落标签
- br 换行
- hr 水平线
- div
- span
- 块级标签可以嵌套内联标签和某些块级标签,内联标签不能嵌套块级标签,可以嵌套内联标签,p标签不能嵌套块级标签和p标签
- 图片标签:img src='11.png' alt='图片未加载成功时显示的内容' title='鼠标悬浮上去时的提示信息' width='100px' height='100px'
- 超链接标签:a href='目标地址' target='_blank' 百度
- 列表标签:
ul 无序列表 type=''
li
ol 有序列表
li
标题标签
dl
dt
dd
table
<thead>
<tr>
<th>姓名</th>
</tr>
</thead>
<tbody>
<tr>
<td>小黑</td>
</tr>
</tbody>
form 表单标签,提交数据用的
input
type='text' password submit reset button hidden file checkbox radio date