-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
97 lines (86 loc) · 3.67 KB
/
index.html
File metadata and controls
97 lines (86 loc) · 3.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MixMe</title>
<!-- Links (top to bottom): Favicon, FontAwesome, Foundation, CSSShake, Style1 -->
<link rel="icon" type="image/png" href="assets/imgs/favicon3.png" />
<script src="https://kit.fontawesome.com/106f23844d.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/foundation-sites@6.6.3/dist/css/foundation.min.css"
integrity="sha256-ogmFxjqiTMnZhxCqVmcqTvjfe1Y/ec4WaRj/aQPvn+I=" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/csshake/1.5.3/csshake-rotate.css"
integrity="sha256-qb6RbQjtL5q6WnEFeCFmf2PI6e3IJ1Fxsaii8QOZM8Y=" crossorigin="anonymous" />
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Header -->
<div class="logo-header">
<a href="index.html"><img id="logo" src="assets/imgs/mmlogo_white.PNG" alt="mix me logo" /></a>
</div>
<!-- Header Spacer -->
<div class="spacer"></div>
<!-- Hero Section -->
<div class="hero-section heroSection">
<div class="hero-section-text">
<!-- <h1>Your new favorite cocktail awaits!</h1> -->
<form class="search-bar">
<input id="tempSearchBar" type="text" placeholder="Enter An Ingredient & Let's Mix...">
</form>
<div class="grid-x align-center">
<button class="shake-rotate" id="btnMixMe"><img id="mix-icon" src="assets/imgs/favicon3.png"
alt="mix me icon" /></button>
</div>
</div>
</div>
<!-- Area For Drink List To Populate -->
<div class="article-row-section">
<div class="article-row-section-inner" id="container">
</div>
</div>
<!-- Area For Single Drink To Populate -->
<div id="container2">
<!-- <newDiv class="grid-x align-center">
<div2 class="drink-name">
<a href="">
<img class="featured-drink" src="assets/imgs/comingsoon.png">
</a>
</div>
<divContainer class="drink-info">
<h3 class="drinkName">Vin's Pub</h3>
<h5>Address</h5>
<div4 class="ingredients">
<p>14 Skyview Court Queens, NY 11423 </p>
</div>
<h5>Phone</h5>
<div5 class="ingredients">
<p> 516 - 052 - 2653 </p>
</div>
<h5>Hours</h5>
<p class="instructions">12:00pm - 1:00am</p>
<h5>Cusine</h5>
<p class="instructions">American Pub Food</p>
</div>
</div> -->
</div>
<!-- "Meet the Team" link -->
<div class="grid-x align-center meetMixMe">
<a href="teambio.html"><img src="assets/imgs/meetmixme.png" alt="meet MixMe logo"></a>
</div>
<!-- Bottom Spacer -->
<div class="bottom-spacer"></div>
<!-- Fixed Footer Menu -->
<div class="bottom-menu grid-x">
<form action="find.html"><button class="fas fa-map-marker-alt fa-2x"></button></form>
<form action="index.html"><button class="fas fa-search fa-2x"></button></form>
<form action="learn.html"><button class="fas fa-gamepad fa-2x"></button></form>
<form action="library.html"><button class="fas fa-book-open fa-2x"></button></form>
</div>
<!-- Scripts (top to bottom): jQuery, Foundation, Script1 -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/foundation-sites@6.6.3/dist/js/foundation.min.js"
integrity="sha256-pRF3zifJRA9jXGv++b06qwtSqX1byFQOLjqa2PTEb2o=" crossorigin="anonymous"></script>
<script src="scriptZBD.js" type="text/javascript"></script>
</body>
</html>