Blogger Information
Blog 1
fans 0
comment 0
visits 379
Related recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
0917作业
David
Original
379 people have browsed it

我的第一个作业

环境

Chrom vscode

表格(学生成绩表)

学号 姓名 课程 成绩
1 测试一 语文 99
2 测试二 数学 100

<!DOCTYPE html>

<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.box{
width: 200px;
width: 200px;
background-color: red;
background-color: red;
}
</style>
</head>
<body>
<!-- id,class -->
<!-- #box -->
<div id="dox"></div>

<!-- .active -->
<div class="active"></div>

<!-- p{Hello World!} -->
<p>Hello World!</p>

<!-- div>p>a 上下级-->

<div>
<p>
<a href=""></a>
</p>
</div>

<!-- div+p+a 兄弟平级-->
<div></div>
<p></p>
<a href=""></a>

<!-- div>p^a -->
<div>
<p></p>
</div>
<a href=""></a>

<!-- 重复 *n -->
<!-- ul>li*3>a{link} -->
<ul>
<li><a href="">link</a></li>
<li><a href="">link</a></li>
<li><a href="">link</a></li>
</ul>

<!-- a[href="https//:www.php.cn"]{php.cn} [这个里面是属性] -->
<a href="https//:www.php.cn">php.cn</a>


<!-- ul>li{item}*5 -->
<ul>
<li>item</li>
<li>item</li>
<li>item</li>
<li>item</li>
<li>item</li>
</ul>

<!-- 序号$ -->
<!-- ul>li{item$}*5 -->
<ul>
<li>item1</li>
<li>item2</li>
<li>item3</li>
<li>item4</li>
<li>item5</li>
</ul>



</body>
</html>

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