-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (72 loc) · 2.72 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
<!DOCTYPE html>
<html>
<head>
<title>
BookWorm
</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link rel="stylesheet" href="style.css">
<script src="https://code.jquery.com/jquery.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
</head>
<body>
<!-- Header -->
<div class="logoTitle">
<img class="logoImg" src="images/bookWorm3.png">
<div class="headerLabel">Search for a Book bellow...</div>
<div class="appTitle">BookWorm</div>
</div>
<nav style="background-color: #3C887E;">
<div class="nav-wrapper">
<form>
<div class="input-field col s6">
<input id="search" type="search" type="text" required>
<label class="label-icon" for="search"><i id="search-icon"
class="material-icons right">search</i></label>
<label class="active searchDirection" style="color: white;; font-size: 20px;" for="search"></label>
<i class="material-icons">close</i>
</div>
</form>
</div>
</nav>
<!-- Modal Structure -->
<div id="modal1" class="modal">
<div class="modal-content">
<h4 id='bookTitle'></h4>
<p id='summaryBook'></p>
<hr>
<p id='noReview' class='warning'></p>
<p id='reviewAuthor'></p>
<p id='summaryReview'></p>
<p><a id='reviewCont' href=""></a></p>
</div>
<div class="modal-footer">
<a href="#!" class="modalNone modal-close waves-effect waves-green btn-flat">Close</a>
<a href="#!" class="modal-add waves-effect waves-green btn-flat">Add</a>
</div>
</div>
<!-- Modal Trigger <a class="waves-effect waves-light btn modal-trigger" href="#modal1">Modal</a>-->
<!-- Where we'll dump the rendered book titles from the search -->
<div class="searchDiv">
<div container="results">
<div class="row">
<div class="col s12"><h5>Top Recommendations</h5></div>
</div>
<div id="book-results" class="row">
</div>
</div>
<!-- Where the Library cards should go in -->
<div container="library" id="display">
<div class="row">
<div class="col s12"><h5>Your Library</h5></div>˜
<div id="library" class="row">
</div>
</div>
</div>
<footer>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script src="script.js"></script>
</body>
</html>