-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path14.Bookmarks.html
More file actions
51 lines (46 loc) · 1.07 KB
/
14.Bookmarks.html
File metadata and controls
51 lines (46 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!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>Bookmarks</title>
</head>
<style>
.box {
width: 200px;
height: 200px;
text-align: center;
padding: 50px;
}
#box1{
background-color: red;
}
#box2{
background-color: blue;
}
#box3{
background-color: green;
}
#box4{
background-color: peru;
}
#box5{
background-color: purple;
}
</style>
<body>
<ul>
<li><a href="#box1">Box 1</a></li>
<li><a href="#box2">Box 2</a></li>
<li><a href="#box3">Box 3</a></li>
<li><a href="#box4">Box 4</a></li>
<li><a href="#box5">Box 5</a></li>
</ul>
<div id="box1" class="box">BOX 1</div>
<div id="box2" class="box">BOX 2</div>
<div id="box3" class="box">BOX 3</div>
<div id="box4" class="box">BOX 4</div>
<div id="box5" class="box">BOX 5</div>
</body>
</html>