Blogger Information
Blog 7
fans 0
comment 0
visits 4527
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
HTML文档结构与CSS基础--8月10日21时25分
NiceCode的博客
Original
509 people have browsed it

代码说明:

本段代码展示了html文档的基本结构与CSS样式的简单应用。

实例

<!doctype html> <!-- xml xhtml html 文档声明 -->
<html> <!-- html文档根标签 -->
	<head> <!-- html文档头部标签 不在页面中显示-->
		<meta charwet="utf-8"> <!-- html文档字符集编码类型 -->
		<title>PHP中文网--视频教程</title>
		<!--<title>标签 文档在浏览器中显示标题 -->
		<link rel="stylesheet" type="text/css" href="style/style.css">
		<!-- <link>是外部文件引入标签,优点为了共享,集中维护,ref属性是文档和外部文件的关系,
			type属性是引入文档的类型,href属性外部文件的url地址
			rel的stylesheet属性值表示引入css样式表文件
		-->
		<link rel="shortcut icon" type="image/x-ico" href="images/title-icon.png">
		<!-- rel的shortcut icon 属性值表示引入网页标题图标 -->		
		<style> /*<style>内部css样式:只针对本文档元素进行渲染*/
		/*css选择器:tag标签名,id名(名字前面加#号),class类名(名字前面加.号)*/
			body{/*background:pink;*/} /*tag选择器*/
			#box{width:100px;height:100px;background:pink;} /*id选择器*/
			.main{width:100px;height:100px;background:green;} /*class类选择器*/
			a{color:red;}
			a[href="http://www.php.cn"]{color:blue;} /*标签属性选择器*/
			a[href="demo.html"]{color:pink;}
			div a{color:#000;} /*派生选择方法*/
			#box a{}
		}
		</style>
	</head>
	<body> <!-- html文档主体内容标签 -->
		<img src="http://www.php.cn/static/images/logo.png"> 
		<!--<img>标签 插入一张图片,src属性是图片url地址 -->
		<!-- <a>标签 表示链接,在网页中可以点击 -->
		<a href="http://www.baidu.com">百度</a> 
		<a href="http://www.php.cn">php中文网</a>
		<a href="demo.html">demo</a> <!-- 跳转到相对路径页面 -->
		<a href="#">#</a> <!-- href属性值为#,跳转到本页 -->

		<div id="box">
			<a href="#">php</a>
		</div>
		<div class="main"></div>
		<div style="background: blue;color:#ddd;"></div> <!-- 内联css写法,优先级最高 -->
		<div></div>
	</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例

总结:

  1. 了解html的基本结构

  2. 了解html文档的字符编码 <meta charset="utf-8">

  3. 了解课程里所讲的html标签和用法及作用。

  4. 了解CSS样式引入的三种方式:外部引入<link>,内部<style>,以及内联样式 <div style="color:red;">

    三种引入CSS方式优先级:内联>内部>外部,外部<link>引入css的优点,复用和维护性比较好。

  5. 了解4个css选择器的原理和用法。


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