-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
88 lines (88 loc) · 2.61 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
<!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"
/>
<meta name="author" content="Danielle Andrews" />
<meta
name="description"
content="drink deck, cocktails, NA drinks, carousel"
/>
<title>Drink Deck</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="icon" type="image/png" href="./img/favicon.ico" />
<link rel="stylesheet" type="text/css" href="./css/index.css" />
<link
rel="stylesheet"
type="text/css"
href="./css/carousel.css"
/>
<script defer type="text/javascript" src="./js/api.js"></script>
</head>
<body>
<div class="content">
<h1>What Would You Like To Drink?</h1>
<form id="search-form" data-drink-search>
<input type="text" value="" />
<button type="submit" name="button" class="input-button">
Show Drink Options
</button>
</form>
<main
class="carousel"
aria-role="group"
aria-roledescription="carousel"
aria-label="drinks"
data-carousel
>
<section class="controls" data-carousel-controls>
<button
class="control hidden"
aria-label="previous slide"
data-carousel-button-previous
>
<span class="fa-solid fa-circle-chevron-left"></span>
</button>
<button
class="control hidden"
aria-label="pause carousel"
data-carousel-button-pause
>
<span class="fa-solid fa-pause"></span>
</button>
<button
class="control hidden"
aria-label="play carousel"
data-carousel-button-play
>
<span class="fa-solid fa-play"></span>
</button>
<button
class="control hidden"
aria-label="next slide"
data-carousel-button-next
>
<span class="fa-solid fa-circle-chevron-right"></span>
</button>
</section>
<section
class="slides"
aria-live="polite"
data-carousel-slides-container
>
<!-- Dynamically place slides here -->
</section>
</main>
</div>
</body>
</html>