-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 721 Bytes
/
Copy pathindex.html
File metadata and controls
30 lines (30 loc) · 721 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>mermaid-ldjam</title>
<script src="js/main.js"></script>
<style>
html, body {
font-family: Arial, sans-serif;
background: #d9d4ca;
color: #463C31;
}
.wrapper {
width: 600px;
display: block;
margin: auto;
}
</style>
</head>
<body>
<div class="wrapper">
<h1>The Mermaid Situation</h1>
<canvas id="mermaid-ldjam"></canvas>
<p>Click your way out of the room!</p>
<p>Use <code>space</code> to drop the current action.<br>
Refresh page to start over.</p>
<p>Made with <3 and ClojureScript for Ludum Dare 37.</p>
</div>
</body>
</html>