forked from drojdjou/squareroot.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (33 loc) · 885 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html>
<head>
<title>SQR Demo list</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable = no">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css">
body {
font-family: Arial, sans-serif;
font-size: 1.3em;
background-color: #000;
color: #fff;
}
ol {
color: #666;
}
a {
color: #fff;
font-weight: bold;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<ol>
<li><a href="bin/gl/001-square">Pure WebGL square</a></li>
<li><a href="bin/gl/002-cube-perf.html">GL Performance Benchmark</a></li>
</ol>
</body>
</html>