HTML常用标签

113 阅读1分钟

HTML常用标签


a标签

  • href : 通常给予一个跳转的目标,可以是网址/路劲/伪协议/id
  • target : 通常指跳转目标显示位置
target_balank
target_self
target_top
target_parent
target_xxx

img标签

img是指发出一个get请求,展示一张图片

属性有src/alt/heigh/width


table标签

Table标签是用来制作一个表格的

常用标签有:

  1. table
  2. thead
  3. tbody
  4. tfoot
  5. tr
  6. th
  7. td

iframe标签

这个标签目前已经不常用了,他是给予一个内嵌窗口,可以与a标签一起使用


form标签

  • action 发送链接、路径
  • method 发送何种请求
  • autocomplete 是否自动填充on/off
  • target 刷新哪个页面

注意事项

  1. 必须得有一个标签含有type="submit"

  2. button 可以给予更多属性