initial
All checks were successful
Build and Deploy koneko.rocks / build-and-deploy (push) Successful in 9s
All checks were successful
Build and Deploy koneko.rocks / build-and-deploy (push) Successful in 9s
This commit is contained in:
61
index.html
Normal file
61
index.html
Normal file
@ -0,0 +1,61 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="shortcut icon" href="tower-fall.svg" type="image/svg">
|
||||
<title>HyperTower Games</title>
|
||||
<style>
|
||||
/* Reset & base styles */
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
||||
background-color: #000;
|
||||
color: #f5f5f5;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 100vh;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* SVG Icon */
|
||||
.icon {
|
||||
width: 120px;
|
||||
height: 120px;
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
/* Title */
|
||||
h1 {
|
||||
font-size: 2.8rem;
|
||||
margin-bottom: 0.5rem;
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
|
||||
/* Slogan */
|
||||
p {
|
||||
font-size: 1.2rem;
|
||||
color: #aaa;
|
||||
}
|
||||
|
||||
/* Subtle glow effect */
|
||||
.glow {
|
||||
text-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<img src="tower-fall.svg" width="256px" height="256px">
|
||||
<h1 class="glow">HyperTower Games</h1>
|
||||
<p>💥 We try to make games. 💥</p>
|
||||
<a href="https://github.com/HyperTowerGames">Github</a>
|
||||
<a href="https://game-icons.net/1x1/lorc/tower-fall.html">Icon Attribution</a>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user