29 lines
547 B
HTML
29 lines
547 B
HTML
|
<!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" width="200px" height="200px"></canvas>
|
||
|
<input type="button" id="testKnapp" width="40px" height="40px">
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
<script src="script.js"></script>
|
||
|
</body>
|
||
|
</html>
|