44 lines
961 B
HTML
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> |