-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (67 loc) · 1.87 KB
/
index.html
File metadata and controls
73 lines (67 loc) · 1.87 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
<!DOCTYPE html>
<html>
<head>
<title>BEWARE THE MAN WHO SPEAKS IN HANDS</title>
<style>
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
height: 100vh;
margin: 0;
background-image: url("https://raw.githubusercontent.com/planetf28/Files/main/ezgif.com-video-to-gif.gif");
background-size: cover;
background-repeat: no-repeat;
background-position: center;
font-family: 'Papyrus', sans-serif;
}
.title-container {
text-align: center;
margin-top: 20px;
}
.title {
font-family: Wingdings, sans-serif;
font-size: 24px;
}
.button-container {
text-align: center;
margin-top: 20px;
}
.button {
padding: 10px 20px;
background-color: blue;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
font-family: 'Press Start 2P', sans-serif;
}
.message {
display: none;
margin-top: 20px;
font-size: 20px;
color: blue;
font-family: 'Press Start 2P', sans-serif;
}
</style>
<link href="https://fonts.googleapis.com/css2?family=Papyrus&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
</head>
<body>
<div class="title-container">
<h1 class="title">BEWARE THE MAN WHO SPEAKS IN HANDS</h1>
</div>
<div class="button-container">
<button class="button" onclick="showMessage()">Click me!</button>
<p id="message" class="message">Want to play Terraria?</p>
</div>
<script>
function showMessage() {
var messageElement = document.getElementById("message");
messageElement.style.display = "block";
}
</script>
</body>
</html>