-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
94 lines (79 loc) · 2.72 KB
/
index.html
File metadata and controls
94 lines (79 loc) · 2.72 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
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html>
<head>
<style>
body {
background: linear-gradient(to right, #e718c2, #5fdb2c, #1b1ad9);
color: black;
font-family: fantasy;
text-align: center;
padding: 20px;
box-sizing: border-box;
}
.menu {
display: flex;
justify-content: space-around;
padding: 10px 0;
}
.menu a {
text-decoration: none;
color: white;
margin: 0 5px;
padding: 5px 10px;
border: 1px solid cyan;
border-radius: 7px;
background-color:purple;
}
.menu a:hover {
background: rgba(255, 255, 255, 0.1);
}
#home {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 30px;
}
#home img {
max-width: 100%;
height: auto;
border-radius: 10px;
margin-bottom: 20px;
}
#download-btn {
padding: 10px 20px;
background: purple;
color: white;
border: none;
border-radius: 20px;
cursor: pointer;
}
</style>
</head>
<body>
<div class="menu">
<a href="#home">LIMITLESS 🍿🍿🍿🍿APP</a>
<a href="#about">FRIENDLY 🍿🍿🍿AND</a>
<a href="#contact">UNLIMITED🍿🍿🍿🍿</a>
</div>
<div id="home">
<h1>Welcome to NS Oviac</h1>
<h2>The Leading Ugandan entertainment app</h2>
<img src="https://image.jimcdn.com/app/cms/image/transf/dimension=640x10000:format=png/path/sb21de6c24726f488/image/icacd98879f7f8a51/version/1697988623/image.png" alt="NS Oviac App">
<h2><ul>
<li>No advertisments📡</li>
<li>No subscription🪙</li>
<li>No immorality</li>
</ul></h2>
<img src="https://image.jimcdn.com/app/cms/image/transf/dimension=640x10000:format=jpg/path/sb21de6c24726f488/image/i4fbdb1863b1b227f/version/1704019561/image.jpg" alt="">
<h2><u>Please Scroll 🔻 down the page to download or upgrade to the latest version of NS OVIAC</u></h2>
<img src="https://image.jimcdn.com/app/cms/image/transf/dimension=640x10000:format=jpg/path/sb21de6c24726f488/image/i7b94eebd4a09df61/version/1704019540/image.jpg" alt="">
<button id="download-btn"><h2>DOWNLOAD<br>APP</h2></button>
</div>
<script>
document.getElementById('download-btn').addEventListener('click', function() {
window.location.href = 'https://storage.googleapis.com/ns-oviac.appspot.com/update.apk';
});
</script>
</body>
</html>
Enter