-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (32 loc) · 716 Bytes
/
index.html
File metadata and controls
42 lines (32 loc) · 716 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
31
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Projectors</title>
<style>
body {
margin: 0;
overflow: hidden;
}
a{
display: block;
color: black;
font-family: "Courier New", Courier, monospace;
font-size: 14px;
padding: 10px;
border: 1px solid black;
margin:30px;
}
</style>
</head>
<body>
<a href="stripes-fixed-canvas.html">Stripes</a>
<a href="blockwrap.html">Blocks</a>
<a href="concentric.html">Concentric</a>
<a href="gravballs.html">Gravity balls</a>
<a href="pulse.html">Pulse</a>
<a href="random_blocks.html">Random blocks</a>
<a href="waves.html">Waves</a>
</body>
</html>