-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (51 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Justice Is Blind</title>
<link rel="icon" type="image/png" href="CubelessIcon.png">
<link href="https://fonts.googleapis.com/css2?family=Special+Elite&display=swap" rel="stylesheet">
<style>
body {
background-color: black;
background-image: url('GhostBackground.png'); /* Ensure the file extension is correct */
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
color: white;
font-family: 'Special Elite', cursive;
text-align: center;
display: flex;
justify-content: center;
align-items: flex-statr;
height: 100vh;
margin: 0;
cursor: url('3dwarro.cur'), auto; /* Add custom cursor */
}
.container {
background-color: rgb(15, 21, 39);
padding: 20px;
margin-top: 20px;
border: 10px solid white;
box-sizing: border-box;
display: inline-block;
}
h1 {
font-family: 'Special Elite', cursive;
color: white;
margin: 0;
}
button, .container:hover {
cursor: url('harrow.cur'),
auto;
}
</style>
</head>
<body>
<div class="container">
<h1>Unveil The Truth</h1>
</div>
</body>
</html>
</html>