Implement title screen
This commit is contained in:
23
index.html
Normal file
23
index.html
Normal 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>
|
Reference in New Issue
Block a user