-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgetmore.html
41 lines (34 loc) · 1.11 KB
/
getmore.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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!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>Android App Store</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- Header -->
<header></header>
<div id="container" class="container">
<!-- Home Section -->
<section id="home">
<!-- Editor's Choice Section -->
<section class="editors-choice top-app-section">
<h3 class="app-category"></h3>
<div class="app-row"></div>
</section>
<div id="page-navigation" style="display: flex;">
<button class="pageBtn" id="previous">Previous</button>
<p id="number"></p>
<button class="pageBtn" id="next">Next</button>
</div>
</section>
<!-- Side Bar -->
<aside id="side-bar"></aside>
</div>
<!-- About Section -->
<footer id="footer"></footer>
<script src="./js/getmore.js"></script>
</body>
</html>