-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask4-1.html
More file actions
43 lines (43 loc) · 980 Bytes
/
Copy pathtask4-1.html
File metadata and controls
43 lines (43 loc) · 980 Bytes
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
<!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>task4-1</title>
<style>
.box{
display: flex;
flex-direction: row;
justify-content: center;
}
.pagination li {
display: inline;
line-height: 25px;
margin: 0 5px;
}
.pagination a {
color: black;
text-shadow: 1px 0 0 #101011;
padding: 0 10px;
border-radius: 2px;
box-shadow: 0 1px 0 #5a5b5c inset,0 1px 0 #080808;
}
</style>
</head>
<body>
<div class="box">
<div class="pagination">
<ul>
<div><a href="#">Prev</a></div>
<div><a href="#">1</a></div>
<div><a href="#">2</a></div>
<div><a href="#">3</a></div>
<div><a href="#">4</a></div>
<div><a href="#">5</a></div>
<div><a href="#">Next</a></div>
</ul>
</div>
</div>
</body>
</html>