39 lines
1.2 KiB
HTML
39 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=Lingo, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
<link href="https://fonts.googleapis.com/css?family=Ubuntu:500&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="./css/index.css">
|
|
<title>Lingo</title>
|
|
</head>
|
|
<body>
|
|
<div class="formContainer box">
|
|
<form id="submitForm">
|
|
<input type="text" id="wordInput" autocomplete="off" placeholder="Submit word">
|
|
<button type="submit">Versturen</button>
|
|
</form>
|
|
|
|
<form id="guessForm" style="display: none;">
|
|
<input type="text" id="wordInput" autocomplete="off" placeholder="Guess word">
|
|
<button type="submit">Versturen</button>
|
|
<button id="giveUp">Opgeven</button>
|
|
</form>
|
|
|
|
<button id="restart" style="display: none;">Opnieuw beginnen</button>
|
|
</div>
|
|
|
|
<div class="contentContainer box">
|
|
<span id="letterCount"></span><br>
|
|
<span id="word"></span><br>
|
|
|
|
<div>
|
|
<span id="guesses"></span><br>
|
|
</div>
|
|
|
|
<span id="result"></span>
|
|
</div>
|
|
<script src="./js/index.js"></script>
|
|
</body>
|
|
</html> |