Files
Werewolf/views/index.html

35 lines
1.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>Werewolf</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel = "stylesheet" type = "text/css" href = "../static/styles.css" />
<script src="../node_modules/socket.io-client/dist/socket.io.js"></script>
</head>
<body>
<div class="app-content">
<a href="/">
<div class="app-title">
<h1 class="app-header">Where are</h1>
<h1 class="app-header">the Wolves<span class="title-question-mark">?</span></h1>
</div>
</a>
</div>
<div id="main-buttons">
<a href="/create">
<button class="app-btn">Create Game</button>
</a>
<a href="/join">
<button class="app-btn">Join</button>
</a>
<a href="/learn">
<button class="app-btn">Learn the Game</button>
</a>
</div>
<footer id="footer">
<img src="../assets/images/vanilla_js.png">
<a href="https://github.com/AlecM33/Werewolf">Github</a>
</footer>
</body>
</html>