-
Notifications
You must be signed in to change notification settings - Fork 0
/
page5.html
25 lines (22 loc) · 860 Bytes
/
page5.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href = "web-style.css"> <!--linked css file to head-->
</head>
<body>
<h1>page5</h1>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Repellendus, eveniet molestias qui facilis commodi labore esse doloribus earum saepe maiores harum officiis velit corporis amet voluptas architecto nam iusto debitis?</p>
<div class="pagination">
<a href="page4.html" ><</a>
<a href="web.html">1</a>
<a href="page2.html" >2</a>
<a href="page3.html" >3</a>
<a href="page4.html" >4</a>
<a href="page5.html" class = "active" >5</a>
<a href="" >></a>
</div>
</body>
</html>