Implement title screen

This commit is contained in:
2023-03-07 08:51:04 -08:00
parent 26217a9506
commit 4eaf00c105
8 changed files with 75 additions and 0 deletions

23
index.html Normal file
View File

@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Play Runic</title>
<link rel="stylesheet" href="css/title.css">
</head>
<body>
<div class="center">
<h1 class="name">
RUNIC
</h1>
<button class="play" onclick="play()">
PLAY
</button>
</div>
<script>
function play() {
window.location = "game.html";
}
</script>
</body>
</html>