《HTML入门笔记1》

74 阅读1分钟

html是由Tim Berners-Lee发明的,html起手应该写 常用的表章节的标签有section,p,h1h6. h1h6表示1-6级标题,section表示章节,article表示文章,main表示主要内容,aside表示分支内容。 全局属性有:

  • contenteditable
  • hidden
  • tableindex

常用的内容标签有:
  • ol+li //有序列表
  • ul+li //无序列表
  • dl,dt,dd //表格
  • code // 框选代码
  • pre //加上该标签,可以消除空格被省略的问题
  • hr //水平分割线
  • br //换行
  • a //超链接
  • em //语气强调(会斜体呈现)
  • strong //内容本身强调(会加粗呈现)
  • quote //引用内容
  • blockquote //换行引用