-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (93 loc) · 3.34 KB
/
index.html
File metadata and controls
97 lines (93 loc) · 3.34 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
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ByteCamp - Fuel Your Future | Houston Deeloper Academy</title>
<link href='https://fonts.googleapis.com/css?family=Roboto:400,300,300italic,400italic,500italic,500,700|Roboto+Slab:700,400,300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" crossorigin="anonymous" />
<link rel="stylesheet" href="css/main.css" />
</head>
<body>
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#menu-collapse" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">
<img src="./img/ByteCamp-Horizontal.svg" height="100%" />
</a>
</div>
<div class="collapse navbar-collapse" id="menu-collapse">
<ul class="nav navbar-nav">
<li class="active">
<a href="#">
Home <span class="sr-only">(current)</span>
</a>
</li>
<li>
<a href="#">
The Program
</a>
</li>
<li>
<a href="#">
Our Students
</a>
</li>
<li>
<a href="#">
Curriculum
</a>
</li>
<li>
<a href="#">
Hiring
</a>
</li>
</ul>
</div>
</div>
</nav>
<section id="home" class="home">
<div class="container">
<div class="row">
<div class="col-md-7">
<img class="mountains" src="img/Bytecamp-Header.svg" />
</div>
<div class="col-md-5 text-center slogans white">
<h1 class="fuel red">Fuel Your Future</h1>
<h2 class="sustainable normal m0">Build a Sustainable You</h2>
<p class="description">Spend 12 weeks becoming a full-stack software engineer by immersing yourself in learning and building websites and applications.</p>
<hr />
<div class="btn btn-lg btn-danger enroll">
Coming Soon
</div>
<div class="btn btn-lg btn-default learn-more">
Learn More
</div>
</div>
</div>
</div>
<div class="grass"></div>
</section>
<section id="how" class="how">
<div class="container">
<div class="inner-container">
<h2 class="mt0 text-center">What is ByteCamp?</h2>
<p>
ByteCamp is an immersive 12 week full-stack software engineering career school. We've built a world class software engineering curriculum, where we will turn you into a well-rounded software engineer who is ready for anything. Are you ready to take the next step into a career in tech and your ventures ahead?
</p>
<br />
<p class="text-center">
<a href="#" class="btn btn-lg btn-danger learn-more">Learn More About Our Program</a>
</p>
</div>
</div>
</section>
</body>
</html>