-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
163 lines (154 loc) · 5.59 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
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
151
152
153
154
155
156
157
158
159
160
161
162
163
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html class="no-js">
<!--<![endif]-->
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Julio-Mobile-JS</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="../css/styles.css" />
</head>
<body>
<header id="home">
<div class="menu">
<span class="bar"></span>
</div>
<nav class="nav">
<a href="index.html" id="logo">The Squeeze</a>
<div class="overlay">
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#story">Our Story</a></li>
<li><a href="#menu">Menu</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</nav>
<div class="main-text">
<h1>Welcome</h1>
<h2>The Squeeze</h2>
<a href="#" class="btn main-btn">Explore</a>
</div>
</header>
<section class="our-story" id="story">
<div class="container">
<div class="center add-padding-right">
<h1 class="custom-font">Discover</h1>
<h2 class="custom-font-secondary">Our Story</h2>
<p>
Suddenly she came upon a little three-legged table, all made of
solid glass; there was nothing on it except a tiny golden key, and
Alice’s first thought was that it might belong to one of the doors
of the hall; but, alas! either the locks were too large, or the key
was too small, but at any rate it would not open any of them.
</p>
<a href="" class="btn btn-info">Learn More</a>
</div>
<div class="store add-flex"></div>
</div>
</section>
<section class="fresh-ingredients between-sec">
<h1 class="custom-font">Fresh</h1>
<h2 class="custom-font-secondary between-sec-color">Ingredients</h2>
</section>
<section class="our-menu" id="menu">
<div class="container">
<div class="center second">
<h1 class="custom-font">Our</h1>
<h2 class="custom-font-secondary">Menu</h2>
<p>
Suddenly she came upon a little three-legged table, all made of
solid glass; there was nothing on it except a tiny golden key, and
Alice’s first thought was that it might belong to one of the doors
of the hall; but, alas! either the locks were too large, or the key
was too small, but at any rate it would not open any of them.
</p>
<a href="" class="btn btn-info">Full Menu</a>
</div>
<div class="image-group add-flex add-padding-right first">
<img src="../img/lemonade.jpeg" alt="Glass of Lemonade" />
<img src="../img/lemonade2.jpeg" alt="Glass of Lemonade" />
<img src="../img/lemonade3.jpeg" alt="Glass of Lemonade" />
<img src="../img/lemonade4.jpeg" alt="Glass of Lemonade" />
</div>
</div>
</section>
<section class="citrus-goodness between-sec">
<h1 class="custom-font">Citrus</h1>
<h2 class="custom-font-secondary between-sec-color">Goodness</h2>
</section>
<section class="contact-us" id="contact">
<div class="container">
<div class="center add-padding-right">
<h1 class="custom-font">Contact</h1>
<h2 class="custom-font-secondary">Us</h2>
<p>
Suddenly she came upon a little three-legged table, all made of
solid glass; there was nothing on it except a tiny golden key, and
Alice’s first thought was that it might belong to one of the doors
of the hall; but, alas! either the locks were too large, or the key
was too small, but at any rate it would not open any of them.
</p>
</div>
<div class="form-container add-flex">
<form action="">
<input
type="text"
class="input"
placeholder="Full Name"
name="name"
required
/>
<input
type="text"
class="input"
placeholder="Email"
name="email"
required
/>
<textarea
name="message"
class="text-area"
placeholder="What can we help you with?"
></textarea>
<input type="submit" class="input btn btn-submit" />
</form>
</div>
</div>
</section>
<footer>
<div class="locations">
<h4>Locations</h4>
<div class="locations">
<h5>500 Lemoonade Rd. <br />Manhatten, NY - 1111111</h5>
</div>
</div>
<div class="hours">
<h4>Hours</h4>
<div class="days">
<h5>
Monday - Saturday <br />
10:30am - 8:00pm
</h5>
</div>
</div>
</footer>
<!--[if lt IE 7]>
<p class="browsehappy">
You are using an <strong>outdated</strong> browser. Please
<a href="#">upgrade your browser</a> to improve your experience.
</p>
<![endif]-->
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"
></script>
<script src="../js/script.js"></script>
</body>
</html>