runic-client/index.html

23 lines
458 B
HTML
Raw Normal View History

2023-03-07 08:51:04 -08:00
<!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>