Files
ClassContent/历届学生/fontendsix/每日课程/2021-11-23/demo.html
2024-09-27 02:06:13 +08:00

44 lines
961 B
HTML

<!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>
* {
margin: 0;
padding: 0;
}
.test {
width: 100%;
height: 600px;
}
#one {
background: red;
}
#two {
background: green;
}
#three {
background: blue;
}
#four {
background: black;
}
</style>
</head>
<body>
<div>
<a href="#one">one</a>
<a href="#two">two</a>
<a href="#three">three</a>
<a href="#four">four</a>
</div>
<div class="test" id="one"></div>
<div class="test" id="two"></div>
<div class="test" id="three"></div>
<div class="test" id="four"></div>
</body>
</html>