forked from arsortland/CoffeeShopTemplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
150 lines (130 loc) · 5.33 KB
/
Copy pathIndex.html
File metadata and controls
150 lines (130 loc) · 5.33 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<html>
<head>
<title>
Darth Roast
</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:200" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.2/modernizr.js"></script>
<link rel="icon" href="img\logo.png" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<link rel="stylesheet" href="css\style.css" />
<script async>
$(window).load(function() {
// Animate loader off screen
$(".se-pre-con").fadeOut("slow");
});
</script>
<style>
.no-js #loader {
display: none;
}
.js #loader {
display: block;
position: absolute;
left: 100px;
top: 0;
}
.se-pre-con {
position: fixed;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
z-index: 9999;
background: url(img/Preloader_3.gif) center no-repeat #fff;
}
</style>
</head>
<body>
<div class="se-pre-con"></div>
<!-- Ends -->
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">Darth Roast</a>
</div>
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="order online.html">Order online</a></li>
<!-- <li><a href="contact us.html">Contact us</a></li> -->
<li> <a href="locate.html">Locate us</a></li>
</ul>
</div>
</nav>
<div class="container">
<div class="row">
<div class="col-md-6">
<img src="img\logo.png" class="img-responsive logo" alt="sorry" id="1" />
</div>
<div class="col-md-6 text-uppercase">
<h1>Darth Roast</h1>
<h4>Coffee</h4>
</div>
</div>
<div class="row">
<div class="col-md-6">
<br>
<img class="img-responsive coffeeimage" src="img\coffee-shop.png" >
<br>
</div>
<div class="col-md-6" >
<p>"I have been waiting 1 week, 3 days and 5 hours for you to bring me my coffee. I condemn you to death!"
―Rel Rogock[src]
Coffee was a non-alcoholic beverage that was most often served extremely hot and made from a specific type of bean.
Emperor Palpatine owned farms on various planets that provided the beans to produce high quality coffee and vine-coffee, solely for the use of his court.
Coffee could be prepared and dispensed from a coffee machine, and was usually served in a coffee cup.
</p>
<p>Ref: <a href="https://starwars.fandom.com/wiki/Coffee" >StarWars Fandom</a></p>
</div>
</div>
<div class="col-md-12">
<hr>
</div>
<div class="row">
<div class="col-md-12">
<h2> Gallery</h2>
</div>
</div>
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="img\2.jpg" />
</div>
<div class="item">
<img src="img\3.jpg">
</div>
</div>
<!-- Left and right controls -->
<a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<br>
<div class="row">
<div class="col-md-12">
<h2> Video Gallery </h2>
</div>
</div>
<iframe width="250" height="250" src="https://www.youtube.com/embed/Bq03xebtbeU" frameborder="0" allowfullscreen></iframe>
<iframe width="250" height="250" src="https://www.youtube.com/embed/rxzXL3hwUp8" frameborder="0" allowfullscreen></iframe>
<iframe width="250" height="250" src="https://www.youtube.com/embed/wFBB-Xp9GZI" frameborder="0" allowfullscreen></iframe>
<iframe width="250" height="250" src="https://www.youtube.com/embed/rXCbf9vdMxM" frameborder="0" allowfullscreen></iframe>
</div>
</body>
</html>