-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
107 lines (97 loc) · 4.85 KB
/
index.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Good Coffee Co.</title>
<!-- Bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap-theme.min.css">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<link href='https://fonts.googleapis.com/css?family=Raleway|Muli:300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" rel="text/css" href="css/style.css">
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<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="#">Good Coffee Co.</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="#">Coffee <span class="sr-only">(current)</span></a></li>
<li><a href="#mission">Mission</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="#" data-toggle="modal" data-target="#videoModal">Fair Trade
<!-- Modal -->
<div class="modal fade" id="videoModal" tabindex="-1" role="dialog" aria-labelledby="videoModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-body">
<iframe width="100%" height="350" src="http://www.youtube.com/embed/7K4G5-ydhS0"></iframe>
</div>
</div>
</div>
</div>
</a>
</li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<div class="jumbotron">
<h1>Welcome to Good Coffee Co.</h1>
</div>
<div class="container-fluid mission" id="mission"> <!-- 'mission' is our own class -->
<div class="row">
<h3>Here at Good Coffee Co., we are passionate about serving the best coffee you'll ever taste. <br>
Our staff are self-described 'coffee nerds' wtih impeccable technique. <br>
Stop by today and experience the Good Coffee difference.</h3>
</div>
</div>
<div class="container features">
<div class="row">
<div class="col-xs-12 col-sm-4">
<img class="img-responsive" src="img/coffee-beans.jpeg" alt="Coffee Beans">
<p>The freshest locally-sourced coffee. Organic and Fair Trade certified.</p>
</div>
<div class="col-xs-12 col-sm-4">
<img class="img-responsive" src="img/coffee-shop.jpeg" alt="Coffee Shop">
<p>The perfect environment to meet with a friend or get work done.</p>
</div>
<div class="col-xs-12 col-sm-4">
<img class="img-responsive" src="img/drip-coffee.jpeg" alt="Espresso Machine">
<p>The best equipment ensures taste true to intentions.</p>
</div>
</div>
</div>
<footer class="container-fluid">
<p>© Good Coffee Co. 2015</p>
<ul>
<li><a href="#" >About</a></li>
<li><a href="#" >Location</a></li>
<li><a href="#" >Coffee</a></li>
</ul>
</footer>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js" integrity="sha512-K1qjQ+NcF2TYO/eI3M6v8EiNYZfA95pQumfvcVrTHtwQVDG+aHRqLi/ETn2uB+1JqwYqVG3LIvdm9lj6imS/pQ==" crossorigin="anonymous"></script>
</body>
</html>