-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (26 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>A Maze-ing!</title>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css"
integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous" />
<link rel="stylesheet" type="text/css" href="src/style.css" />
</head>
<body>
<h1>a-MAZE-ing</h1>
<h3 class="missionControl-title hide">Mission Control</h3>
<button class="start-button">start</button>
<div class="missionControl hide">
<textarea class="commands"></textarea>
<button class="execute" title="Execute">
<i class="fas fa-check-circle"></i>
</button>
</div>
<p class="pattern"></p>
</body>
<script type="text/javascript" src="src/script.js"></script>
</html>