generated from GeekwiseAcademy/course-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfinal.html
More file actions
97 lines (91 loc) · 4.1 KB
/
final.html
File metadata and controls
97 lines (91 loc) · 4.1 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
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Javascript for Beginners</title>
<link rel="icon" type="image/png" href="favicon.png">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<div class="logo"><a href="index.html"><img class="img-fluid" src="img/bitwise_workforce_training.png" alt="bitwise workforce logo"></a></div>
<nav class="navbar navbar-expand-lg navbar-light">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="index.html">Course Outline</a>
</li>
<li class="nav-item">
<a class="nav-link" href="links.html">Handy Links</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdownMenuLink" data-toggle="dropdown" role="button" aria-expanded="true">Lessons</a>
<ul class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdownMenuLink">
<li><a class="dropdown-item" href="one.html">Day One</a></li>
<li><a class="dropdown-item" href="two.html">Day Two</a></li>
<li><a class="dropdown-item" href="three.html">Day Three</a></li>
<li><a class="dropdown-item" href="four.html">Day Four</a></li>
<li><a class="dropdown-item" href="five.html">Day Five</a></li>
<li><a class="dropdown-item" href="six.html">Day Six</a></li>
<li><a class="dropdown-item" href="seven.html">Day Seven</a></li>
<li><a class="dropdown-item" href="eight.html">Day Eight</a></li>
<li><a class="dropdown-item" href="nine.html">Day Nine</a></li>
<li><a class="dropdown-item" href="ten.html">Day Ten</a></li>
<li><a class="dropdown-item" href="eleven.html">Day Eleven</a></li>
<li><a class="dropdown-item" href="twelve.html">Day Twelve</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item active" href="final.html">Final Project</a></li>
</ul>
</li>
</ul>
</div>
</nav>
</header>
<main class="container padtop3">
<div class="row">
<div class="col text-center">
<h1>Final Project</h1>
</div>
</div>
<section class="row section"><!-- Minimum Requirements -->
<aside class="col">
<h2>Minimum Requirements</h2>
</aside>
<div class="col-9">
<ul class="points">
<li>Requirement</li>
</ul>
</div>
</section><!-- end Minimum Requirements -->
<section class="row section"><!-- Content -->
<aside class="col-sm-3">
<h2>Content</h2>
</aside>
<div class="col-md-9">
<ul class="points">
<li>Content Item</li>
</ul>
</div>
</section><!-- end Content -->
<section class="row section"><!-- Design -->
<aside class="col">
<h2>Design</h2>
</aside>
<div class="col-9">
<ol class="points">
<li>Design Item</li>
</ol>
</div>
</section><!-- end Design -->
</main>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script type="text/javascript" src="js/bootstrap.min.js" integrity="sha384-oesi62hOLfzrys4LxRF63OJCXdXDipiYWBnvTl9Y9/TRlw5xlKIEHpNyvvDShgf/" crossorigin="anonymous"></script>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>