-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (32 loc) · 1.03 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
<!DOCTYPE html >
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF8"/>
<meta name="viewport" content="width=device-height, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<title>Space Grammar Compiler</title>
<link href="res/index.css" rel="stylesheet"/>
<script type="text/javascript" src="scripts/jq.js"></script>
</head>
<body>
<div id="content">
<div class="header">
<h1>Space grammar</h1>
Type in space grammar and see its random plot.
</div>
<div class="sentence">
<div class="fill">
<h2>Sentences:</h2>
<textarea></textarea><br/>
<button id="dice">Dice!</button>
<button id="open">Edit</button>
</div>
</div>
<div class="result">
<canvas width="750" height="605" class="trans-back"></canvas>
</div>
<div class="clear"></div>
</div>
<script type="text/javascript" src="scripts/index.js"></script>
</body>
</html>