-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (72 loc) · 3.05 KB
/
index.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!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 - Home</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- Header -->
<header></header>
<div id="container" class="container">
<!-- Home Section -->
<section id="home">
<!-- News Post Section -->
<section id="news">
<a href="#">
<h3 class="app-category">News</h3>
</a>
<div class="news-box">
<div class="news-post" id="news-post1">
<div class="news-title">
<span>Call of Duty Mobile: Nightmares come to life is the latest update</span>
</div>
</div>
<div class="news-post" id="news-post2">
<div class="news-title">
<span>Battlefield Mobile coming to Android this fall</span>
</div>
</div>
<div class="news-post" id="news-post3">
<div class="news-title">
<span>divil May Cry Mobile beta officially released in English + China</span>
</div>
</div>
</div>
<a href="#"><button class="btn">Get More News</button></a>
</section>
<!-- Editor's Choice Section -->
<section class="editors-choice top-app-section">
<a href="#" class="more-app-btn" category="OVERALL">
<h3 class="app-category">Top Tranding Apps</h3>
</a>
<div class="app-row"></div>
<a class="more-app-btn" category="OVERALL"><button class="btn">Get More News</button></a>
</section>
<!-- Games Section -->
<section class="editors-choice latest-game-section">
<a href="#" class="more-app-btn" category="GAME">
<h3 class="app-category">Games - Latest Update</h3>
</a>
<div class="app-row"></div>
<a class="more-app-btn" category="GAME"><button class="btn">Get More News</button></a>
</section>
<!-- Apps Section -->
<section class="editors-choice latest-app-section">
<a href="#" class="more-app-btn" category="APPLICATION">
<h3 class="app-category">Apps - Latest Update</h3>
</a>
<div class="app-row"></div>
<a class="more-app-btn" category="APPLICATION"><button class="btn">Get More News</button></a>
</section>
</section>
<!-- Side Bar -->
<aside id="side-bar"></aside>
</div>
<!-- About Section -->
<footer id="footer"></footer>
<script src="./js/index.js"></script>
</body>
</html>