-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathour_apps.html
More file actions
115 lines (76 loc) · 3.11 KB
/
Copy pathour_apps.html
File metadata and controls
115 lines (76 loc) · 3.11 KB
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
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Our Apps</title>
<link rel="stylesheet" href="ourapps.css"> <!-- Link to your CSS file -->
</head>
<body>
<h1><img src="images/Play-Store-Icon.png" alt="Google Play Store" width="50"> Google Play Store Apps</h1>
<section id="google_play_apps">
<!-- Google Play Store Apps -->
<div class="app">
<h3>App Name 1 (Google Play)</h3>
<p>Description of the app.</p>
<a href="https://play.google.com/store/apps/details?id=YOUR_APP_PACKAGE_NAME">
<img src="images/google-play-icon.png" alt="Google Play Store">
</a>
</div>
<!-- Add more Google Play Store apps following the same structure -->
<div class="app">
<h3>App Name 2 (Google Play)</h3>
<p>Description of the app.</p>
<a href="https://play.google.com/store/apps/details?id=YOUR_APP_PACKAGE_NAME">
<img src="images/google-play-icon.png" alt="Google Play Store">
</a>
</div>
<div class="app">
<h3>App Name 3 (Google Play)</h3>
<p>Description of the app.</p>
<a href="https://play.google.com/store/apps/details?id=YOUR_APP_PACKAGE_NAME">
<img src="images/google-play-icon.png" alt="Google Play Store">
</a>
</div>
<div class="app">
<h3>App Name 4 (Google Play)</h3>
<p>Description of the app.</p>
<a href="https://play.google.com/store/apps/details?id=YOUR_APP_PACKAGE_NAME">
<img src="images/google-play-icon.png" alt="Google Play Store">
</a>
</div>
</section>
<h1><img src="images/Apple-Store-Icon.png" alt="App Store" width="50"> App Store Apps</h1>
<section id="app_store_apps">
<!-- App Store Apps -->
<div class="app">
<h3>App Name 1 (App Store)</h3>
<p>Description of the app.</p>
<a href="https://apps.apple.com/app/YOUR_APP_ID">
<img src="images/app-store-icon.png" alt="App Store">
</a>
</div>
<!-- Add more App Store apps following the same structure -->
<div class="app">
<h3>App Name 2 (App Store)</h3>
<p>Description of the app.</p>
<a href="https://apps.apple.com/app/YOUR_APP_ID">
<img src="images/app-store-icon.png" alt="App Store">
</a>
</div>
<div class="app">
<h3>App Name 3 (App Store)</h3>
<p>Description of the app.</p>
<a href="https://apps.apple.com/app/YOUR_APP_ID">
<img src="images/app-store-icon.png" alt="App Store">
</a>
</div>
<div class="app">
<h3>App Name 4 (App Store)</h3>
<p>Description of the app.</p>
<a href="https://apps.apple.com/app/YOUR_APP_ID">
<img src="images/app-store-icon.png" alt="App Store">
</a>
</div>
</section>
</body>
</html>