-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
34 lines (32 loc) · 1.16 KB
/
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
28
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE-edge,chrome=1" />
<title>Text Adventure</title>
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="HandheldFriendly" content="true" />
<meta name="MobileOptimized" content="320" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=yes" />
<meta http-equiv="cleartype" content="on" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Charm&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./main.css" />
</head>
<body>
<div class="main-container">
<div class="output-container">
<div id="output"></div>
</div>
<div class="input-container">
<form id="form" action="javascript:;">
<input type="text" id="input" autocomplete="off" />
<input type="submit" id="submit" value="Submit" />
</form>
</div>
</div>
<script type="module" src="./game.js"></script>
</body>
</html>