《HTML常用标签》
-
a标签的用法
-
href
(hyper reference)- 网址
- http://baidu.com
- https://baidu.com
- //baidu.com
- 路径
- /a/b/c.html
- a/b/c.html
- index.html
- ./index.html
- 伪协议
- javascript:代码;
- mailto:邮箱
- tal:号码
- id
- href="#xxx"
- 网址
-
target
- _blank 在新窗口打开
- _parent 在上层窗口打开
- _top 在顶层窗口打开
- _self 在当前窗口打开
-
download
属性表明当前链接用于下载,而不是跳转到另一个 URL。 -
rel=noopener
告诉浏览器打开链接时,不让链接窗口通过 JavaScript 的`window.opener`属性引用原始窗口,这样就提高了安全性。
-
-
img标签的用法
- src 发出get请求,展示一张图片
- alt 图片不显示时,显示文字
- height 图片高度
- width 图片宽度
-
table标签的用法
- thead 头部
- tbody 身体
- tfoot 脚部
注:'thead','tbody','tfoot'位置与顺序无关
-
其他
- 眼睛要好
- iframe标签
- form标签