forked from KevinWorkman/intro-to-web-dev
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
25 lines (25 loc) · 1.2 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
<!DOCTYPE html>
<html>
<head>
<title>Intro to Web Development</title>
</head>
<body>
<h1>Intro to Web Development</h1>
<p>This site contains homework projects for Intro to Web Development.</p>
<ul>
<li><a href="week-01-html/index.html">Week 01: HTML</a></li>
<li><a href="week-02-css/index.html">Week 02: CSS</a></li>
<li><a href="week-03-layout/index.html">Week 03: Layout</a></li>
<li><a href="week-04-dom-manipulation/index.html">Week 04: DOM Manipulation</a></li>
<li><a href="week-05-if-statements/index.html">Week 05: If Statements</a></li>
<li><a href="week-06-for-loops/index.html">Week 06: For Loops</a></li>
<li><a href="week-07-p5js/index.html">Week 07: p5.js</a></li>
<li><a href="week-08-objects/index.html">Week 08: Objects</a></li>
<li><a href="week-09-fetch/index.html">Week 09: Fetch</a></li>
<li><a href="week-10-bootstrap/index.html">Week 10: Bootstrap</a></li>
<li><a href="week-11-react/index.html">Week 11: React</a></li>
<li><a href="week-12-accessibility/README.md">Week 12: Accessibility</a></li>
<li><a href="week-zz-scratch/index.html">Week ZZ: Scratch Directory</a></li>
</ul>
</body>
</html>