Blogger Information
Blog 8
fans 0
comment 0
visits 5816
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
8月10日作业
PHP入门学习的各种作业
Original
555 people have browsed it

<!DOCTYPE html>

<html>

<head><!--定义头部文件-->

<title>我的第一次课程</title><!--浏览器上方显示的文字比较重要-->

<meta charset="utf-8"><!--声明编码格式-->

<link rel="stylesheet" type="text/css" href="样式.css"><!--引入外部样式为了共享,rel属性定义当前文档与链接文档之间的关系;type属性定义被链接文件的类型;href属性被定义链接文件的地址-->

<link rel="shortcut icon" type="image/x-icon" href="images/footlogo.jpg"><!--浏览器标题栏引入小图标代码-->

<style type="text/css"><!--内部样式只针对当前页面,与引入外部样式有明显区别-->

 body{background:red;}<!--标记选择器,元素或者标签直接加大括号-->

 #fang{width: 300px;height: 500px;background: yellow;}

 .main{width: 300px;height: 500px;background: green;}


</style>

</head>

<body style="background: blue;"><!--内联样式优先级大于内部样式大于外部样式-->

<img src="图片地址"><!--显示图片-->

<div id="fang">id选择器具有唯一性</div>

<div class="main">类选择器</div>

<div></div>

<div></div>

主要内容显示区域

</body>

</html>


Correction status:unqualified

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