forked from MoviesFromAHat/MoviesFromAHat.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (25 loc) · 926 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Movies From a Hat</title>
<meta charset="utf-8" />
<!-- Styles -->
<link href="css/styles.css" rel="stylesheet" media="screen" />
</head>
<body>
<div class="selection-container">
<button id="selectBtn">Select a movie.</button>
<p id="selection"></p>
</div><!-- end .selection-container -->
<div class="previous-selection-container">
<h2>Previous Selections</h2>
<ul id="watched"></ul>
<h2>Future Selections</h2>
<ul id="movies"></ul>
</div><!-- end .previous-selection-container -->
<!-- Scripts -->
<script src="bower_components/lodash/dist/lodash.min.js"></script>
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>