-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
56 lines (46 loc) · 1.23 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
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;600&display=swap" rel="stylesheet">
</head>
<body>
<div class="instruction">
<p class="instruction--text">You are going to visit Demo Build of the project which may/mayn't reflect the same for the Production Build</p>
<p class="thanks">THANK YOU</p>
</div>
<style>
body {
background-color: #343434;
}
.instruction--text {
color: white;
font-family: poppins;
font-weight: 600;
font-size: 3rem;
max-width: 650px;
text-align: center;
margin: auto;
margin-top: 15%;
}
.thanks {
color: white;
font-family: poppins;
font-weight: 800;
font-size: 2.5rem;
max-width: 650px;
text-align: center;
margin: auto;
margin-top: 25px;
}
</style>
</div>
<script type="text/javascript">
setTimeout(function() {
window.location.href = 'demoBuild/DDoS/index.html';
}, 5000);
</script>
</body>
</html>