-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
88 lines (62 loc) · 2.85 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 name="viewport" content="width=device-width, initial-scale=1.0">
<title>Read it or Watch it?</title>
<!-- Import Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Alegreya+Sans+SC&family=Berkshire+Swash&family=Limelight&display=swap" rel="stylesheet">
<!--Import Google Icon Font-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- Link to CSS -->
<link rel="stylesheet" type="text/css" href="assets/style.css">
</head>
<body>
<!-- Title of page -->
<div class="header">
<h1 class="title center-align yellow-text text-darken-3 " id="Title">Read It or Watch It?</h1>
</div>
<section class="col s12 center-align">
<div class="row">
<div class="col s0 m2 l3"></div>
<form>
<div class="input-field col s10 m8 l6">
<h5 class="bold-text" id="question">What book or movie are you interested in...</h5>
<form action="">
<div class="input-field">
<a href="#" class="btn-floating yellow darken-3 prefix waves-effect waves-light" id="searchBtn">
<i class="material-icons">search</i>
</a>
<input type="text" id="mediaSearch">
<label for="mediaSearch">Enter Title Here</label>
</div>
</form>
</div>
</form>
</div>
</section>
<main>
<!-- Media Content -->
<section class="container">
<div class="row">
<!-- Books Info-->
<div class="col s12 m6 l6 border-right" id="bookCol">
<h3 class="center-align" id="theBook">The Book</h3>
<div id="bookResults"></div>
</div>
<!-- Movie Info -->
<div class="col s12 m6 l6 border-left" id="movieCol">
<h3 class="center-align" id="theMovie">The Movie</h3>
<div id="movieResults"></div>
</div>
</div>
</section>
</main>
<script src="assets/consolidation.js"></script>
</body>
</html>