众所周知,html是超文本标记语言,css是级联样式表
1.html标签统计:
html:根标签
<html></html>
head:头标签
<head></head>
body:主体标签
<body></body>
meat:单标签
<meta charset="UTF-8">
link:引入外部文件
<link rel="stylesheet" href= "">
script:脚本标签
<script></script>
<script src=""></script>
p:段落文字
<p></p>
h1~h6:标题系列
<h1~6></h1~6>
a:链接
<a href = "" target=""></a>
table:表格表示数据
<table>
<tr><td></td></tr>
</table>
form:表单
<from action="" method="">
</from>
div:盒子
<div></div>
css样式:
background背景:
background-image
background-color
background-repeat
background-position
text文本 :
text-align
text-decoration
text-indent
text-shadow
text-tranfrom
color
font字体:
font
font-family
font-size
font-style
font-weight
list列表:
list-style
border边框:
border
border-style
border-color
border-width
border-bottom
border-right
border-left
border-radius
outline轮廓:
outline-style
outline-color
其他样式:
z-index
display
position
overflow
curson
line-height
以上仅供参考哦!