-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (52 loc) · 1.35 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
<!DOCTYPE html>
<html>
<head>
<title>20-20-20 Refresh</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f0f0f0;
}
.container {
width: 80%;
margin: auto;
text-align: center;
}
.header {
padding: 50px 0;
background-color: #333;
color: #fff;
}
.header h1 {
margin: 0;
}
.content {
padding: 50px 0;
}
.download-btn {
display: inline-block;
margin-top: 20px;
padding: 10px 20px;
background-color: #008CBA;
color: #fff;
text-decoration: none;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1>Welcome to Our Eye Care Application</h1>
<p>Protect your eyes with the 20-20-20 rule</p>
</div>
<div class="content">
<h2>Download Our Application</h2>
<p>Click the button below to download our application and start protecting your eyes today.</p>
<a href="https://20-20-20.blr1.digitaloceanspaces.com/application/app.zip" class="download-btn"
>Download</a>
</div>
</div>
</body>
</html>