换行
水平线 粗体 斜体 &; symbol non-breaking space > greater than < less than
1.image tag
<img src="" alt="" [title=""] [width=""] [height=""]>
src:source,地址
alt:alternative 加载不出图片时显示的文字
title:悬停文字
2.a tag(anchor,html5已经弃用a标签作为锚点的用法,而改用任意标签中id当锚点的方式,不需要再在标签外嵌套a标签,这个改动非常方便。)
<a href="https://www.baidu.com" [target=""]> href:hypertext reference
target:打开超链接位置。_blank:新标签打开。_self:当前页面打开
定位锚点的用法:[.html]#id
[.html]是可选,可以链接到别的标签时用,如
a.先想跳转位置定义一个标记,
xxx代表可以是任意标签
b.在另一个位置定义锚链接,回到顶部
定义两个html
a.html
b.html
在1.html中定义
在2.html中可以有这里
打开2.html点击“这里”可以跳转1.html的xxx标签位置。