-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject_timeline.html
75 lines (75 loc) · 1.92 KB
/
project_timeline.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html>
<head>
<title>MIDI Keyboard: Project Timeline</title>
<meta charset="utf-8"/>
<link rel="stylesheet" href="main.css"/>
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed" rel="stylesheet">
</head>
<body>
<div>
<nav role="navigation">
<div id="menuToggle">
<input type="checkbox"/>
<span></span>
<span></span>
<span></span>
<ul id="menu">
<a href="index.html"><li>Home</li></a>
<a href="about.html"><li>About</li></a>
<a href="#"><li>Timeline</li></a>
<a href="process_binder.html"><li>Process Binder</li></a>
<a href="bill_of_materials.html"><li>Bill of Materials</li></a>
<a href="technical_drawings.html"><li>Technical Drawings</li></a>
<a href="gallery.html"><li>Gallery</li></a>
</ul>
</div>
</nav>
</div>
<div>
<section>
<h2>Project Timeline</h2>
<h4>August</h4>
<ul>
<li>Project was planned and decided on a direction to go in</li>
</ul>
<h4>September</h4>
<ul>
<li>Started Ordering parts and putting together a prototype</li>
</ul>
<h4>October</h4>
<ul>
<li>Fixing and editing prototype circuit and 3D printing and began programming</li>
</ul>
<h4>November</h4>
<ul>
<li>Finished prototype and worked on programming</li>
</ul>
<h4>December</h4>
<ul>
<li>Programming finished and PCB design started</li>
</ul>
<h4>January</h4>
<ul>
<li>PCB design editing and finished and start designing website</li>
</ul>
<h4>February</h4>
<ul>
<li>Designing website and making code user friendly</li>
</ul>
<h4>March</h4>
<ul>
<li>Website design and making code user friendly</li>
</ul>
<h4>April</h4>
<ul>
<li>Website design and Arts Fest</li>
</ul>
<h4>May</h4>
<ul>
<li>Final touches and Academic Showcase</li>
</ul>
</section>
</div>
</body>
</html>