-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (33 loc) · 1.15 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 charset="utf-8">
<title>micma: abstract algebra playground</title>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<section id="main-menu">
<h1>main menu</h1>
<button type="button" onclick="magmaGenerator()">generate magmas</button>
</section>
<section id="magma-generator">
<header>
<input type="text" id="generator-input"/>
<select id="generator-width" title="number of elements">
<option value="3">3 elements</option>
<option value="2">2 elements</option>
<option value="1">1 elements</option>
<option value="0">0 elements</option>
</select>
<button type="button" onclick="generate()">generate</button>
</header>
<section id="generator-results"></section>
</section>
<p id="js-notice">note: micma requires <em>javascript</em> to function, it only uses it for good (namely math). you can trust us because it's open source. :D</p>
<script src="main.js"></script>
<script src="ui.js"></script>
<script src="library.js"></script>
<script src="examples.js"></script>
</body>
</html>