-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (37 loc) · 1.05 KB
/
index.html
File metadata and controls
40 lines (37 loc) · 1.05 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DMS210 Code</title>
<style>
body {
font-size: 1.1em;
}
</style>
</head>
<body>
<h1>Code examples for DMS210</h1>
<p>
These heavily commented p5 sketches can be used as references for the
sections of DMS210 I teach.
</p>
<ul>
<li><a href="week01/">week01</a></li>
<li><a href="week02/">week02</a></li>
<li><a href="week03/">week03</a></li>
<li><a href="week04/">week04</a></li>
<li><a href="week05/">week05</a></li>
<li><a href="week06/">week06</a></li>
<li><a href="week07/">week07</a></li>
<li><a href="week08/">week08</a></li>
<!-- <li><a href="week09/">week09</a></li>
<li><a href="week10/">week10</a></li> -->
</ul>
<h2>How to look at these</h2>
<p>
Clone the repo, cd to the directory, and start a local server using
node.js or python.
</p>
</body>
</html>