words/index.html

25 lines
748 B
HTML
Raw Normal View History

2022-01-27 18:36:45 +00:00
<!doctype html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="styles.css">
2022-01-27 19:14:29 +00:00
<title>words</title>
2022-01-27 18:36:45 +00:00
</head>
<body>
2022-01-27 19:14:29 +00:00
<h1>words</h1>
2022-01-27 18:36:45 +00:00
<div id="game_container">
2022-01-27 20:20:51 +00:00
</div>
<div style="display: none"; id="end_screen">
<h2 id="end_screen_message"></h2>
<h3 id="end_screen_guesses"></h3>
<h3 id="end_screen_time"></h3>
<p> refresh page to play again </p>
2022-01-27 18:36:45 +00:00
</div>
2022-01-27 19:14:29 +00:00
<p> built with ❤ and adequate amounts of care by <a href="https://alv.cx">alv</a> </p>
2022-01-27 18:36:45 +00:00
<script type="application/javascript" src="wordlist.js"></script>
<script type="application/javascript" src="game.js"></script>
</body>