-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
31 lines (30 loc) · 851 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<title>Zig Toys</title>
</head>
<style>
body {
margin: 40px auto;
max-width: 650px;
line-height: 1.6;
font-size: 18px;
color: #444;
padding: 0 10px;
};
h1, h2, h3 {
line-height: 1.2;
};
</style>
<body>
<h3>Zig Toys - WASM Demos</h3>
<p>Below is a series of interactive demos you can try out in your browser. All of them use WebAssembly to run. Your browser must support WebAssembly to run these.</p>
<ul>
<li><a href="toys/mandelbrot/index.html">Mandelbrot</a></li>
<li><a href="toys/life/index.html">Game of Life</a></li>
<li><a href="toys/blockmaze/index.html">Blockmaze</a></li>
<li><a href="toys/rps/index.html">Rock Paper Scissors</a></li>
<li><a href="toys/gridfill/index.html">Gridfill</a></li>
</ul>
</body>
</html>