-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
18 lines (18 loc) · 758 Bytes
/
Copy pathindex.html
File metadata and controls
18 lines (18 loc) · 758 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Download My Android App</title>
<style>
body { font-family: Arial, sans-serif; text-align: center; padding: 50px; }
.download-btn { display: inline-block; padding: 15px 30px; background-color: #2ea44f; color: white; text-decoration: none; border-radius: 5px; font-weight: bold; }
</style>
</head>
<body>
<h1>Get the App</h1>
<p>Click the button below to download the latest version of our Android app.</p>
<!-- Relative link to the APK stored in your root directory -->
<a href="android-debug.apk" download class="download-btn">Download APK File</a>
</body>
</html>