-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (62 loc) · 2.04 KB
/
Copy pathindex.html
File metadata and controls
71 lines (62 loc) · 2.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="Cocktail generator with instructions on how to make alcoholic beverages">
<meta name="keywords" content="cocktail, drinks, mixers">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Got Cocktail?</title>
<!-- external CSS link -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/header.css">
<link rel="stylesheet" href="https://unpkg.com/swiper/swiper-bundle.min.css">
</head>
<body>
<!-- Search Bar -->
<header>
<div class="logo-search">
<form id="form">
<div class="form-content">
<img src="resources/got-cocktailslogo-1.png" alt="Got Cocktail Logo">
<h4>Get your cocktail on!</h4>
<input type="text" name="" value="" placeholder="Amaretto...">
<button type="button" name="button">Search</button>
</div>
</form>
</div>
</header>
<!-- Carousel Slider -->
<section>
<div class="swiper mySwiper container">
<div class="swiper-wrapper content"></div>
</div>
<div class="swiper-button-next"></div>
<div class="swiper-button-prev"></div>
<div class="swiper-pagination"></div>
</section>
<!-- Swiper JavaScript -->
<script src="js/main.js"></script>
<script src="https://unpkg.com/swiper/swiper-bundle.min.js"></script>
<!-- Swiper Initialization -->
<script>
var swiper = new Swiper('.mySwiper', {
slidesPerView: 2, // This will display # of cards at a time
spaceBetween: 30,
slidesPerGroup: 1,
loop: true,
loopFillGroupWithBlank: true,
pagination: {
el: '.swiper-pagination',
clickable: true,
},
navigation: {
nextEl: '.swiper-button-next',
prevEl: '.swiper-button-prev',
},
});
</script>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>