meta标签
属性:charset 可以设置 字符集的解码
name = 'keywords' content = '网站的关键字,让搜索引擎进行解锁的'
name = 'description' content =';网站的简介
http-equiv = 'refresh' content = '要等待的时间数;时间到后跳转的网站
iframe标签(引用外部的文件)内联框架:
属性:
src='要引用文件的路径'‘
<a> 超链接:
属性:
href = ’一个完整的网址,或者一个路径'
target = '_self' 在当前窗口打开(默认值)
target = '_blank' 在新的窗口打开
块元素和内联元素:
块元素:div p h1-h6 ul li
内联元素:(行内元素) a img span iframe
超链接可以包含任意元素,但是不能包含它本身
p不可以包含快元素
css:
注释方法 /**/
link 引入css样式的标签
属性:
rel = 'stylesheet' type='test/css' href = 'css/文件全名
常用的选择器:
</style> 使用选择器
元素选择器:
p {color:red;}
类选择器:
.p{color:red;}
id选择器:
#p{color:red}
选择器分组(并集选择器)
p,.p,#p{color:red}