-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (80 loc) · 3.09 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
82
83
<!DOCTYPE html>
<html>
<head>
<title>App List</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="navbar">
<a href="index.html">Home</a>
<a href="privacy.html">Privacy</a>
<a href="contact.html">Contact Us</a>
</div> <div class="app">
<table>
<tr>
<td rowspan="2" class="icon_td">
<img class="app_icon" src="images/candy.webp" alt="Candy Crush Saga Icon">
</td>
<td class="app_name_td">
<h2>Candy Crush Saga</h2>
</td>
</tr>
<tr>
<td class="description">
Master the legendary match 3 puzzle game from King! With over a trillion matching levels played, Candy Crush Saga is the popular match 3 puzzle game.
</td>
</tr>
<tr>
<td colspan="2" class="appLink">
<a href="https://example.com/sample-app-store-link">Download on AppStore</a>
</td>
</tr>
</table>
</div>
<div class="app">
<table>
<tr>
<td rowspan="2" class="icon_td">
<img class="app_icon" src="images/soda.webp" alt="Candy Soda Saga Icon">
</td>
<td class="app_name_td">
<h2>Candy Soda Saga</h2>
</td>
</tr>
<tr>
<td class="description">
You loved playing Candy Crush Saga - Start playing Candy Crush Soda Saga! More divine matching combinations and challenging game modes, brimming with purple soda and fun!
</td>
</tr>
<tr>
<td colspan="2" class="appLink">
<a href="https://example.com/sample-app-store-link">Download on AppStore</a>
<a href="https://example.com/sample-app-store-link">Download on GooglePlay</a>
</td>
</tr>
</table>
</div>
<div class="app">
<table>
<tr>
<td rowspan="2" class="icon_td">
<img class="app_icon" src="images/farm.webp" alt="Farm Heroes Saga Icon">
</td>
<td class="app_name_td">
<h2>Farm Heroes Saga</h2>
</td>
</tr>
<tr>
<td class="description">
Farming has never been so fun! Jump into a farmtastic adventure: match and collect the cute Cropsies across the farm to solve the match 3 puzzles! Go from puzzle to puzzle, matching fruit and plants, and level up to save the farm from Rancid the Raccoon. Join forces with the Farm Heroes to swap, match, and collect Cropsies. Ready to defend the Farm Lands?
</td>
</tr>
<tr>
<td colspan="2" class="appLink">
<a href="https://example.com/sample-app-store-link">Download on AppStore</a>
</td>
</tr>
</table>
</div>
</body>
</html>