-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (53 loc) · 1.89 KB
/
Copy pathindex.html
File metadata and controls
66 lines (53 loc) · 1.89 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
<!DOCTYPE html>
<html>
<!-- Metadata -->
<head>
<!-- This is where I can give instructions to the browser. -->
<title>Bootcamp Comparo</title>
<link rel="stylesheet" href="index.css" type="text/css">
</head>
<!-- Navigation Bar -->
<body>
<!-- This is what the user sees -->
<nav>
<img src="resources/codeFellowsLogoWhite.png">
<ul > <!-- ul => Unordered List tag -->
<!-- li => List tag-->
<!-- <li><a href="index.html">Home</a></li> -->
<li><a href="src/CodeFellows.html">Code Fellows</a></li>
<li><a href="src/CodingDojo.html">Coding Dojo</a></li>
</ul>
</nav>
<!-- Main Logo at Home Page -->
<header>
<img src="resources/codeBanner.jpg">
<h1>Coding Bootcamp Comparison</h1>
</header>
<!-- Page Text Body -->
<section>
<h2>Bootcamps Compared:</h2>
<p> <!-- paragraph tag -->
This is a comparison of the coding bootcamps in the greater Seattle area.
<br /><br />
<strong>Coding Dojo</strong> is an intense program that runs for 12 weeks with 50 to 100 hours per week of combined coursework.
<br /><br />
<strong>Code Fellows</strong> is a more flexible program offering nights and weekends classes over a longer period of time, allowing busy people the opportunity to jump into web development.
</p>
</section>
<!-- Duh... -->
<footer>
<div id="menu-outer">
<div class="table">
<ul id="horizontal-list"> <!-- ul => Unordered List tag -->
<!-- li => List tag-->
<li>Copyright 2017</li>
<li><a href="index.html">Home</a></li>
<li><a href="resources/about.html">About</a></li>
<li><a href="resources/contact.html">Contact Us</a></li>
<li><a href="resources/help.html">Help</a></li>
</ul>
</div>
</div>
</footer>
</body>
</html>