Files
Werewolf/index.html
2019-08-30 02:00:50 -04:00

30 lines
941 B
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="/socket.io/socket.io.js"></script>
</head>
<body>
<div class="app-content">
<a href="/">
<h1 class="app-header">Werewolf</h1>
</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>
<button class="app-btn">Learn the Game</button>
</div>
<footer id="footer">
<img src="assets/images/vanilla_js.png">
</footer>
<script src="/static/game.js"></script>
</body>
</html>