-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (44 loc) · 909 Bytes
/
index.html
File metadata and controls
45 lines (44 loc) · 909 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Message</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
font-family: Arial, sans-serif;
background: #000;
color: #fff;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
text-align: center;
}
.box {
padding: 20px;
}
button {
padding: 12px 20px;
font-size: 16px;
background: #25D366;
border: none;
color: white;
border-radius: 5px;
margin-top: 20px;
}
</style>
</head>
<body>
<div class="box">
<h2>Please vote for Kyagulanyi Robert on 15th-Jan-2025</h2>
<button onclick="go()">Continue</button>
</div>
<script>
function go() {
window.location.href = "https://example.com";
}
</script>
</body>
</html>