forked from KansasCityWomeninTechnology/ExampleWebsite1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (47 loc) · 2.22 KB
/
index.html
File metadata and controls
49 lines (47 loc) · 2.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>LadyDev Coffee Shop</title>
<link rel="stylesheet" href="assets/lib/bootstrap/css/bootstrap.min.css" >
<link rel="stylesheet" href="assets/css/main.css" >
<script src="assets/lib/jquery/jquery-1.12.1.min.js"></script>
<script src="assets/lib/bootstrap/js/bootstrap.min.js"></script>
<script src="assets/js/app.js"></script>
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" 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="assets/img/coffeelogo.png"></a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li class="active"><a href="#">About <span class="sr-only">(current)</span></a></li>
<li><a href="#">Coffee</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<div class="main">
<div class="hero" id="about">
<div class="head">
<h1>LadyDev Coffee</h1>
<h2>Caffinating ladies writing code since 2015.</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quam, similique, in eaque, repellendus expedita quod quasi cupiditate assumenda id, doloribus iste neque impedit dolore! Sunt ipsum dolorem voluptates error quos.</p>
</div>
<div class="btn-group">
<button class="btn btn-default" type="button">CLICK THIS LINK</button>
</div>
</div>
</body>
</html>