-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (39 loc) · 1.25 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" type="image/svg+xml" href="/vite.svg">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Welcome to the Hackers Terminal Game - a thrilling adventure where you can test your hacking skills!">
<title>Hackers Terminal Game</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
background-color: #f0f0f0;
}
h1 {
text-align: center;
}
img {
width: 400px;
border-radius: 15px;
margin: 20px 0;
}
</style>
</head>
<body>
<div>
<h1>Welcome to the Hackers Terminal Game!</h1>
<p>Test your skills in this thrilling adventure!</p>
<img src="https://raw.githubusercontent.com/ronoc2020/Hackers_Terminal_Game/main/Hakcers%20Terminal%20Game%20banner.jpg" alt="Hackers Terminal Game Banner" />
</div>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>