-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
78 lines (61 loc) · 3.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Bookilicious!</title>
<link rel="stylesheet" href="assets/CSS/reset.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" crossorigin="anonymous">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.3.1.min.js" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="assets/CSS/style.css">
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="assets/CSS/style.css">
<link href='http://fonts.googleapis.com/css?family=Pacifico' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="jumbotron">
<h1 class="display-4">Bookilicious, tell me what to read next</h1>
</div>
<div class="container">
<div class="row bookDiv"></div>
<div class="row lastRow">
<div class="row yelpDiv"></div>
<div class="col-lg-4">
<div class="card">
<div class="card-body">
<form action="" autocomplete="on">
<div class="form-group">
<input type="text" class="form-control" id="readBook" aria-describedby="emailHelp"
placeholder="I just finished reading this book">
</div>
<div class="form-group">
<input type="text" class="form-control" id="readBookAuthor"
placeholder="An author I enjoy reading">
</div>
<div class="form-group">
<input type="text" class="form-control" id="readBookGenre"
placeholder="A genre I enjoy reading">
</div>
<div class="form-group">
<label for="lookForBookstore"><strong>Want to support a local bookstore?</strong></label>
<input type="store" class="form-control" id="storeInfo"
placeholder="Enter your zip code here">
</div>
<button type="submit" id="submitButton" class="btn btn-primary">Bookilicious Magic</button>
</form>
</div>
</div>
</div>
</div>
</div>
<div class="footer"></div>
<script src="assets/Javascript/yelp.js"></script>
<script src="assets/Javascript/books.js"></script>
</body>
</html>