标题h1 h2 h3 h4 h5 h6
段落p
链接a
文本格式化标签:
b
big
em
i
small
strong
sub
sup
ins
del
计算机输出标签:
code
kbd
samp
tt
var
pre
引用标签:
缩写abbr
首字母缩写acronym
地址address
文字方向bdo
长的引用blockquote
短的引用q
引用、引证 cite
定义项目 dfn
图片
<img src="url" />
地图
表格 table
列表:
无序列表ul
有序列表ol
自定义列表
水平线<hr />
换行<br />
注释<!-- -->
属性:
属性=“”
href
样式 style 这种叫做内联样式
为了插入样式我们有三种办法:
对于多个文件的公共样式,我们使用外部样式表
<head>
<link rel="stylesheet" type="text/css" href="XXXX.css">
</head>
当我们这个文件需要特别样式时,用内部样式表
<head>
<style type="text/css">
body {background-color: red}
p {margin-left: 20px}
</style>
</head>
当特殊的样式要应用到个别元素,用内联样式
作为属性 style=" "
段落p
链接a
文本格式化标签:
b
big
em
i
small
strong
sub
sup
ins
del
计算机输出标签:
code
kbd
samp
tt
var
pre
引用标签:
缩写abbr
首字母缩写acronym
地址address
文字方向bdo
长的引用blockquote
短的引用q
引用、引证 cite
定义项目 dfn
图片
<img src="url" />
地图
表格 table
列表:
无序列表ul
有序列表ol
自定义列表
div
span
水平线<hr />
换行<br />
注释<!-- -->
属性:
属性=“”
href
样式 style 这种叫做内联样式
为了插入样式我们有三种办法:
对于多个文件的公共样式,我们使用外部样式表
<head>
<link rel="stylesheet" type="text/css" href="XXXX.css">
</head>
当我们这个文件需要特别样式时,用内部样式表
<head>
<style type="text/css">
body {background-color: red}
p {margin-left: 20px}
</style>
</head>
当特殊的样式要应用到个别元素,用内联样式
作为属性 style=" "