-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
99 lines (89 loc) · 2.96 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
<!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.0" />
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css"
/>
<script src="https://apis.google.com/js/api.js"></script>
<link rel="stylesheet" href="style.css" />
<script
src="https://code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
crossorigin="anonymous"
></script>
<title>GitCocktail</title>
</head>
<body>
<section>
<div class="container">
<!--name of application-->
<h1 class="title"><span class="git">Git</span>Cocktail</h1>
<h2 class="description mc">Search for your favorite Cocktail!</h2>
<!--search bar-->
<form class="cocktail-form row">
<!--the search button with materialize.css which adds a color wave affect-->
<label class="sc col" id="label-search" for="search">Search:</label
><br />
<input
id="cocktailSearch"
class="input sc col s10"
type="text"
placeholder="Happy Hour starts here..."
/>
<span>
<button
class="btn waves-effect waves-light"
id="searchBtn"
name="action"
>
Search
</button>
</span>
<br /><br />
</form>
<img class="carousel-img" alt="random drink images" />
</div>
</section>
<!-- result cards -->
<div class="search-results">
<div class="item">
<div class="flex-container">
<h1 class="results mc">Here are your results:</h1>
</div>
</div>
</div>
<aside class="favorites-bar"></aside>
<div class="container recipes">
<!-- <div id="cocktail hide"></div> -->
<div id="cocktail1"></div>
</div>
<a href="favorites.html">
<button>Your Favorite 🍸 </button>
</a>
<footer class="mc">
<h3>Cheers🥂</h3><a href="http://programminghead.com">
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script src="script.js"></script>
</body>
</html>
<!-- <div class="card large">
<img src="${favoritesArr[i].strDrinkThumb}">
<div class="card-content">
<h3>${favoritesArr[i].strDrink}</h3>
</div>
<div class="card-action">
<a class="waves-effect waves-light btn favbtn">
<i onclick="changeIcon()" class="material-icons left" id='favbtn'>favorite_border</i>Favorite
</a>
</div>
</div>
</div> -->