-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
112 lines (103 loc) · 4.65 KB
/
index.html
File metadata and controls
112 lines (103 loc) · 4.65 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!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>MovieSlashCocktailParty</title>
<!-- Bootstrap -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<!-- Custom Stylesheet -->
<link rel="stylesheet" href="./assets/style.css" />
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@200;400;700&display=swap" rel="stylesheet">
</head>
<body>
<!-- Top header - sticky with logo and navigation -->
<header>
<div class="container top-bar">
<div class="logo">
<a href="index.html"><img src="./assets/images/logo.svg" alt="Movie Slash Cocktail Party Logo"></a>
</div>
<nav class="nav">
<a class="nav-link active" href="index.html"> Home</a>
<a class="nav-link" href="./assets/recipes/recipe.html">Recipes</a>
</nav>
</div>
</header>
<!-- Main content - including hero, pairing section (with both the movie and cocktails)-->
<main>
<!-- Jumbotron / hero with introduction info -->
<section class="jumbotron">
<div class="container">
<div class="content">
<h1>Movie and Cocktail Evening!</h1>
<p id="top-header">Everyone wants a treat with a movie, why not try our randomised
movie and cocktail pairing app!</p>
</div>
</div>
</section>
<!-- Pairing content will go here, including buttons and results (dynamically created in JS)-->
<section class="pairing">
<div class="container">
<div class="row">
<div class="top">
<h2>Create the perfect match</h2>
<button id="matchBtn">Click me!</button>
</div>
</div>
<div class="row">
<div id="movie" class="col-md-6">
<span>?</span>
</div>
<div id="cocktail" class="col-md-6">
<span>?</span>
</div>
</div>
<div class="row save-recipe">
<div class="col">
<button id="save">I LOVE THIS! Save this recipe!</button>
<div id="modal" class="modal">
<div class="modal-content">
<h5 class="modal-title">Your recipe has been saved!</h5>
<p> Find another match or view your saved recipes</p>
<div class="button-navigation">
<button id="continue-btn"><a href="#top-header">Find another match</a></button>
<button id="recipe-btn">View Saved Recipes</button>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</main>
<!-- Footer for owner credit and API credit -->
<footer>
<div class="container">
<div class="row">
<div class="col">
<div class="owners">
Created by <a href="https://github.com/Bcott93" target="_blank">Ben</a>, <a
href="https://github.com/Luffy1916" target="_blank">Haris</a>, <a
href="https://github.com/ResonantDevotion" target="_blank">Rebecca</a> & <a
href="https://github.com/Zwirled" target="_blank">Amelia</a>
</div>
<div class="credit">
<a href="https://www.themoviedb.org/" target="_blank">
<img src="./assets/images/TMDB.svg" alt="The Movie Database">
</a>
</div>
</div>
</div>
</div>
</footer>
<!-- Script for JQuery -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!-- Link custom JavaScript -->
<script src="./assets/script.js"></script>
</body>
</html>