-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrandom.html
85 lines (76 loc) · 3.56 KB
/
random.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
<!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">
<title>Your Friendly Neighborhood Cocktail Concierge</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
<link rel="icon" type="image/x-icon" href="./assets/images/Cocktail Icon.png">
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<section class="hero hero-bg-img">
<div class="hero-body">
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<p class="title navbar-item has-text-white">Cocktail Concierge</p>
<a role="button" class="navbar-burger has-text-white" aria-label="menu" aria-expanded="false"
data-target="navbarBasicExample">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="navbarBasicExample" class="navbar-menu">
<div class="navbar-end">
<a class="navbar-item has-text-white" href="./index.html">
Home
</a>
<p class="navbar-item has-text-white">|</p>
<a class="navbar-item has-text-white" href="./favorites.html">
Favorites
</a>
<p class="navbar-item has-text-white">|</p>
<a class="navbar-item has-text-white" href="./random.html">
Random
</a>
</div>
</div>
</nav>
</div>
</section>
<section class="section columns is-justify-content-center">
<div id="drink-card" class="card column custom-col-width">
<div class="card-image">
<figure class="image">
<img id="cocktail-image" alt="#">
</figure>
</div>
<div class="field card-header is-justify-content-center">
<label id="cocktail-name" class="label">Random cocktail</label>
</div>
<div class="control card-content">
<p class="title is-4">Ingredients</p>
<ul class="subtitle is-6 list-style" id="ingredient-list">
</ul>
<p class="title is-4">Instructions</p>
<p class="subtitle is-6" id="cocktail-instr"></p>
<p class="title is-4">Glassware: <span class="subtitle is-6" id="glass-type"></span></p>
</div>
<div class="field is-grouped is-justify-content-center">
<div class="control">
<button class="button is-success" id="save-btn"></button>
</div>
</div>
</div>
</section>
<section class="is-flex is-justify-content-center">
<button class="button mb-6 is-danger is-light is-large is-responsive" id="rando-btn">Ask the bartender!</button>
</section>
<script src="https://code.jquery.com/jquery-3.6.1.min.js"
integrity="sha256-o88AwQnZB+VDvE9tvIXrMQaPlFFSUTR+nldQm1LuPXQ=" crossorigin="anonymous"></script>
<script src="./assets/js/random.js"></script>
<script src="./assets/js/burger.js"></script>
</body>
</html>