hangman/index.html

40 lines
801 B
HTML
Raw Normal View History

2020-01-13 18:16:42 +00:00
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>The HTML5 Herald</title>
<meta name="description" content="The HTML5 Herald">
<meta name="author" content="SitePoint">
2020-01-14 12:04:21 +00:00
<link rel="stylesheet" href="main.css">
2020-01-13 18:16:42 +00:00
</head>
<body>
<h1>Hangman 2020 av Rolf Martin Glomsrud</h1>
<canvas id="myCanvas"></canvas>
<div>
<input type="text" id="myText", value="">
<input type="button" id="testKnapp" width="40px" height="40px" value="Test!" onclick="testLetter()">
</div>
<h2>Feil:</h2>
2020-01-15 09:53:03 +00:00
<p id="wrongLetters"></p>
<h2>Antall forsøk igjen:</h2>
<p id="tries"></p>
2020-01-14 19:58:45 +00:00
<h2>Ordet så langt:</h2>
2020-01-15 09:53:03 +00:00
<p id="ord"></p>
2020-01-13 18:16:42 +00:00
<script src="script.js"></script>
</body>
</html>