forked from hamery93/Cinema-Sips
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
110 lines (106 loc) · 5.23 KB
/
Copy pathindex.html
File metadata and controls
110 lines (106 loc) · 5.23 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
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Cinema Sips-Give it a Shot</title>
<!-- GoogleFonts link -->
<link href="https://fonts.googleapis.com/css2?family=Montserrat&family=Rye&family=Special+Elite&display=swap"
rel="stylesheet">
<!-- foundation CDN link -->
<link rel="stylesheet" href="https://dhbhdrzi4tiry.cloudfront.net/cdn/sites/foundation.min.css" />
<link rel = "stylesheet" href = "https://cdnjs.cloudflare.com/ajax/libs/motion-ui/1.1.1/motion-ui.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/foundation-sites@6.5.1/dist/css/foundation.min.css"
integrity="sha256-1mcRjtAxlSjp6XJBgrBeeCORfBp/ppyX4tsvpQVCcpA= sha384-b5S5X654rX3Wo6z5/hnQ4GBmKuIJKMPwrJXn52ypjztlnDK2w9+9hSMBz/asy9Gw sha512-M1VveR2JGzpgWHb0elGqPTltHK3xbvu3Brgjfg4cg5ZNtyyApxw/45yHYsZ/rCVbfoO5MSZxB241wWq642jLtA=="
crossorigin="anonymous">
<!-- internal CSS stylesheet -->
<link rel="stylesheet" href="Assets/CSS/styles.css" />
</head>
<body>
<!-- Sidebar Area -->
<div class="off-canvas position-left reveal-for-large" id="sidebar" data-off-canvas data-position="left">
<div class="row column">
<br />
<img class="thumbnail" src="Assets/images/CinemaSipsLogo.png" />
<ul class="dropdown menu" id="drop-down-list" data-dropdown-menu>
<li>
<a href="#" class="button">Choose Yo Mood! </a>
<ul class="menu">
<li id="happy"><a href="#">Happy 😊</a></li>
<li id="sad"><a href="#">Sad 😥</a></li>
<li id="angry"><a href="#">Angry 😡</a></li>
<li id="scared"><a href="#">Scared 😱</a></li>
<li id="romantic"><a href="#">Romantic 😘</a></li>
</ul>
</li>
</ul>
</div>
</div>
<div class="title-bar" data-responsive-toggle="navbar">
<button class="menu-icon" type="button" data-toggle="navbar"></button>
<div class="title-bar-left">
<button class="menu-icon" type="button" data-toggle="navbar"></button>
<span class="title-bar-title">Choose Yo Mood!</span>
</div>
</div>
<div id="navbar">
<ul class="dropdown menu show-for-small hide-for-large" id="drop-down-list" data-dropdown-menu>
<li>
<a href="#" class="button">Set the mood:</a>
<ul class="menu">
<li id="happy"><a href="#">Happy 😊</a></li>
<li id="sad"><a href="#">Sad 😥</a></li>
<li id="angry"><a href="#">Angry 😡</a></li>
<li id="scared"><a href="#">Scared 😱</a></li>
<li id="romantic"><a href="#">Romantic 😘</a></li>
</ul>
</li>
</ul>
</div>
<!-- Header Area -->
<div class="off-canvas-content background-img" data-off-canvas-content>
<div class="callout primary">
<div class="row">
<h1>Cinema Sips</h1>
<h2 class="lead">Give it a Shot</h2>
</div>
</div>
<div class="outer-card row">
<!-- Movie Card -->
<div class="flex-left column large-6 small-12" id="movie-card">
</div>
<br/>
<br/>
<!-- Drink Card -->
<div class="flex-right column large-6 small-12" id="cocktail-card">
</div>
<p><a data-open="reveal_modal"></a></p>
<div class="reveal large" id="reveal_modal" data-reveal data-animation-in="scale-in-down slow">
<h5 class="modal">Welcome to Cinema Sips! Give it a Shot.</h5>
<hr/>
<p>Movie night just got a whole lot easier. Choose your mood from the dropdown menu and be paired with a movie suggestions to match your mood and a drink to go with!
</p>
<button class="close-button" data-close aria-label="Close reveal" type="button">
<span aria-hidden="true">×</span>
</button>
</div>
</div>
</div>
</div>
</div>
<!-- jQuery link -->
<script src="https://code.jquery.com/jquery-3.5.1.min.js"integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<!-- foundation JS links -->
<script src="https://cdn.jsdelivr.net/npm/foundation-sites@6.5.1/dist/js/foundation.min.js"
integrity="sha256-WUKHnLrIrx8dew//IpSEmPN/NT3DGAEmIePQYIEJLLs= sha384-53StQWuVbn6figscdDC3xV00aYCPEz3srBdV/QGSXw3f19og3Tq2wTRe0vJqRTEO sha512-X9O+2f1ty1rzBJOC8AXBnuNUdyJg0m8xMKmbt9I3Vu/UOWmSg5zG+dtnje4wAZrKtkopz/PEDClHZ1LXx5IeOw=="
crossorigin="anonymous"></script>
<script>
$(document).foundation();
$(document).ready(function () {
$('#reveal_modal').foundation('open')
});
</script>
<!-- internal JS link -->
<script src="script.js"></script>
</body>
</html>