博客列表 >08-10作业

08-10作业

阿老李的博客
阿老李的博客原创
2018年08月13日 15:41:16687浏览

今天是作业写好的第一天。

代码如下:

实例

<!DOCTYPE html><!--这是一个html文本 -->
<html><!--网页开始标签-->
<head><!--网页头部-->
	<title>PHP0810作业</title><!--网页抬头标签-->
	<meta charset="utf-8"><!--网页解析-->
	<link rel="stylesheet" type="text/css" href=""><!-- 链接外部css列表
 -->
 	<link rel="shortcut icon" type="image/x-icon" href="image/bodyfj.jpg"><!-- 链接网站头标图片 -->
 	<!-- tag标签名字,id名{前面加#},class名 属性选择器 -->
 	<style type="text/css">/*内部样式开始标签*/
 		*{	padding: 0px;
 			margin: 0px;
 		}
 		#box{width: 200px;height: 200px;background: black;}/*id标签*/
 		.main{width: 200px;height: 200px;background: red;color: blue;}/*class标签*/
 		body{/*网页进行内外对齐*/
 			padding: auto;
 			margin: auto;
 		}

 		a{color: blue;
 			/*属性选择器	*/
 		}
 		a[href="http://www.php.cn/"]{color: yellow;}
 		a[href="dome2.html"]{color: blue;}
 		/*派生选择器根据文档上下文关系定义*/
 		div a{color: red;}
 		#box a{width: 150px;height: 150px;color: pink; }
 	</style>

</head>
<body><!--网页主题标签内联格式style -->
	<img src="">
	<a href="https:www.baidu.com">百度</a><!--链接到百度-->
	<a href="http:www.php.cn" style="color: red;">php中文网</a><!--链接到php网站-->
	<a href="dome2.html">外部</a><!--链接到外部文件-->
	<a href="#">#</a>
	<div id="box">
		<a href="">php5</a>
	</div>
	<div class="main">php</div>
</body><!--头部结尾-->
</html><!--结束-->

运行实例 »

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

手抄代码如下:微信图片_20180813152746.jpg微信图片_20180813152714.jpg

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议