Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
ronoc2020 authored Oct 12, 2024
1 parent c863dd1 commit 03aa85f
Showing 1 changed file with 34 additions and 8 deletions.
42 changes: 34 additions & 8 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,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" />
<title>Vite + React + TS</title>
</head>
<body>
<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>
</body>
</html>

0 comments on commit 03aa85f

Please sign in to comment.