forked from djsjollema/PROJ-1.3-19-20-GD-textadventure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (25 loc) · 812 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>maquest</title>
<link rel="stylesheet" href="css/style.css"/>
</head>
<div class="container">
<H1 id="location">Hier is mijn lokatie</H1>
<div class="image">
<img id="imageLocation" src="" width="600" alt="">
</div>
<div id="description">dit is de omschrijving</div>
<div id="inventory"></div>
<ul id="possibilities">dit zijn mijn mogelijkheden</ul>
<div class="input">
<label for="myInput">Wat ga je doen? </label><input type="text" name="myInput" id="myInput" autofocus>
</div>
<div id="feedback"></div>
</div>
<body>
<script src="js/script.js"></script>
</body>
</html>