Blogger Information
Blog 34
fans 0
comment 0
visits 32153
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
【HTML5】html的常用标签及css样式的引用与使用总结--2018年8月11日 23:27:07
Belifforz的博客
Original
1195 people have browsed it

在前端开发过程,html标签是最常见的一种元素。html用来显示文本,而css则是修饰美化。下面我对html基础标签和css样式引用的总结,与大家分享:

实例

<!DOCTYPE html><!-- 定义整个html文档的类型-->
<html>
<head>
<!-- charset定义文档的编码格式-->
	<meta charset="UTF-8">
	<title>PHP第三期教学</title>
	<link rel="stylesheet" type="text/css" href="static/style.css"><!-- 外部样式 -->
	<link rel="shortcut icon" type="image/x-icon" href="images/shouye_01.png">
	<style type="text/css">/*内部样式:只针对当前页面*/
	     /*tag标签名、id名(名字前加#)、class名、属性选择器*/
		body{background: black;}/*元素选择器*/
		#box{
			width : 100px;
			height : 100px;
			background : yellow;}/*id选择器*/
		.main{
			width : 100px;
			height : 200px;
			background : pink;}/*类选择器*/
        a{color:red;}
        a[href="https://www.php.cn"]{color:green;}/*属性选择器*/
        div a{color:#000;}
	</style>
</head>
<body style="background:pink;"><!-- 内联样式。另外关于优先级:内联样式>内部样式>外部样式 -->
	<a href="https://www.baidu.com">百度一下,你就知道</a>
	<a href="https://www.php.cn">php中文网</a>
	<a href="day_02.html">demo2</a>
	<h1>PHP中文网</h1>
	<img src="F:\wallpaper\1920x1080.jpg">
	<div id="box">
     <a href="">text</a>   
    </div>
	<div class="main"></div>
	<div></div>
</body>
</html>


运行实例 »

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

QQ截图20180813154540.pngQQ截图20180810223934.png

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