Blogger Information
Blog 38
fans 0
comment 0
visits 25322
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
第一课—2018年8月10日20时00分
空白
Original
593 people have browsed it
实例
<!DOCTYPE html>
<html>
<head>
	<title>第一课</title>
	<meta charset="utf-8">
	<link rel="stylesheet" type="text/css" href="">
	<link rel="shortcut icon" type="image/x-icon" href="images/logo.jpeg">
	<style type="text/css">
		body {
			background-color: #eee;
		}		div {
			color: #222;
		}
		#nr1 {
			color: #636363;
		}
		.nr2 {
			color: #777;
		}
		.nr3 {
			color: #939393;
		}
		a {
			color: red;
		}
		a[href="www.php.cn"] {
			color: blue;
		}
	</style>
</head>
<body style="color: pink;">
	<p>
		html元素,css
	</p>

	<p style="color: #333;">
		样式优先级:内联样式 > 内部样式 > 外部样式	
	</p>

	<p></p>

	<div>选择器:</div>
	<div>① tag标签选择器</div>
	<div id="nr1">② id选择器(名字前面加 #),唯一性,不能有多个相同的ID</div>
	<div class="nr2">③ class选择器(名字前面加 .),可出现多次</div>
	<div class="nr3">④ 属性选择器</div>
	<a href="www.baidu.com">百度</a>
	<a href="www.php.cn">php中文网</a>
	
</body>
</html>

111.png

手抄代码

QQ20180813-222924.pngQQ20180813-222938.png

结论:

    1.了解了html的文档结构,html文档须写在<html></html>标签中。

    2.html须指明编码格式,如有中文字符须指明文档为utf-8格式,否则会出现乱码。

    3.样式的定义有外部样式、内部样式、内联样式3种方法,优先级:内联样式 > 内部样式 > 外部样式

    4.元素选择器:tag标签选择器、id选择器、class选择器、属性选择器

Correction status:qualified

Teacher's comments:缺少手写代码!这个时间应该是课程对应的时间哦!!
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post