hangman/index.html

35 lines
678 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">
<link rel="stylesheet" href="css/styles.css?v=1.0">
</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>
<h2></h2>
2020-01-13 18:16:42 +00:00
<script src="script.js"></script>
</body>
</html>