<br>
B标记加粗---->>
<b>Python 爬虫</b>
<br>
i标记斜体---->>
<i>Python 爬虫</i>
<br>
sub 下标标记---->>
2<sub>2</sub>
<br>
sup 上标标记---->>
2<sup>2</sup>
<br>
引用标记---->>
<cite>Python 爬虫</cite>
<br>
em标记表示强调,显示为斜体---->>
<em>Python 爬虫</em>
<br>
strong标记表示强调,加粗显示---->>
<strong>Python爬虫</strong>
<br>
sma11标记,可以显示小一号字体,可以嵌套使用---->>
<small>Python 爬虫</small>
<small><small>Python爬虫</small></small><small><small><small>Python 爬虫</small></small></small>
<br>
big标记,显示大一号的字体---->>
<big>Python 爬虫</big>
<big><big>Python 爬虫</big></big>
<br>
u标记是显示下划线---->>
<big><big><big><u>Python 爬虫</u></big></big></big>
<br>
</body>
</html>
图像标记
语法:
<img src=”路径/文件名.图片格式” width=”宽度值” height=”高度值” border = “” alt = “”>
属性:
src:指定图片路径
width:指定图片的宽度,单位px、em、cm、mm
height:指定图片高度,单位px、em、cm、mm
border:图片的边框宽度,单位px、em、cm、mm
alt:1 指定当图片加载完成后,鼠标放在图片上时,显示的文字。2 图像下载失败时,会用文字来代替图像显示。3 搜索引擎可以通过这个属性的文字抓取图片。
例子:
<img src="/i/photo/dancer.png" alt="跳舞的人" width="500" height="749">