-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
34 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |