-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (80 loc) · 2.37 KB
/
index.html
File metadata and controls
89 lines (80 loc) · 2.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>RITT</title>
<link rel="icon"
type="image/jpg"
href="image/favicon.jpg">
<link rel="stylesheet" href="css/normalize.min.css">
<link rel="stylesheet" href="css/vaporwave.css">
<link rel="stylesheet" href="css/win98.css">
<link rel="stylesheet" href="css/demo.css">
<style>
body {
background-image: url('http://i.imgur.com/siKf7GZ.png');
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;
overflow: hidden;
}
.center {
margin: auto;
width: 100%;
height: 100%;
}
#logo {
position: relative;
}
#logo img {
position: absolute;
width: 40%;
left: 50%;
margin-left: -20%;
}
#content {
padding-top: 40%;
}
#content div {
margin: auto;
text-align: center;
}
#win {
width: 30%;
}
center input {
width: 45%;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="index.js"></script>
</head>
<body>
<div class="center">
<div id="logo">
<img id="image-1" src="image/image-1.png" alt="RITT" style="z-index: 1; display: none;"/>
<img id="image-3" src="image/image-2.png" alt="RITT" style="z-index: 2; display: none;"/>
<img id="image-2" src="image/image-3.png" alt="RITT" style="z-index: 3; display: none;"/>
</div>
<div id="content">
<div class="vaporwave">
<div class="window" id="win">
<div class="header">
<img class="icon" src="icon/exe.gif">
RITT.exe
</div>
<div class="content">
<center>
<h3>YOU HAVE BEEN INFECTED!</h3>
<input id="input-name" type="text" placeholder="Name">
<form method="get" action="./game">
<button>Start Scan</button>
</form>
</center>
</div>
</div>
</div>
</div>
</div>
</body>
</html>