-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhelp.html
88 lines (79 loc) · 3.29 KB
/
help.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>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Normalize CSS Stylesheet -->
<link rel="stylesheet" href="./assets/css/normalize.css">
<!--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">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Cormorant+Garamond|Hind+Vadodara|Roboto&display=swap"
rel="stylesheet">
<!-- Custom CSS -->
<link rel="stylesheet" href="./assets/css/main.css">
<title>Bookly</title>
</head>
<body>
<div class="navbar-fixed">
<nav>
<div class="nav-wrapper white">
<a href="index.html" class="brand-logo teal-text text-darken-4 ml">Bookly</a>
<ul id="nav-mobile" class="right">
<li><a class="teal-text text-darken-2" href="help.html">Help</a></li>
<li><a class="teal-text text-darken-2" href="about.html">About</a></li>
</ul>
</div>
</nav>
</div>
<div class="container">
<div class="row">
<div class="col s12">
<h1 class="center-align">Instructions</h1>
</div>
</div>
<div class="row">
<div class="col s12 d-flex justify-center">
<img src="./assets/images/google_books_search.png" alt="">
</div>
</div>
<div class="row">
<div class="col s12 d-flex justify-center">
<p class="center-align">Go to <a href="https://books.google.com">Google Books</a>. Click the <em>My
Library</em>
link below the search bar.</p>
</div>
</div>
<div class="row">
<div class="col s12 d-flex justify-center">
<img src="./assets/images/google_books_MyLibrary_uid.png" alt="">
</div>
</div>
<div class="row">
<div class="col s12 d-flex justify-center">
<p class="center-align">Copy your <em>uid</em> from the search bar at the top of the browser window.</p>
</div>
</div>
<div class="row">
<div class="col s12 d-flex justify-center">
<img src="./assets/images/Bookly_search_input.png" alt="">
</div>
</div>
<div class="row">
<div class="col s12 d-flex justify-center">
<p class="center-align">Enter your <em>uid</em> in the Bookly search bar to see your results</p>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous">
</script>
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<!-- local javascript -->
<script src="./assets/javascript/googlebooks_api.js" type="text/javascript"></script>
</body>
</html>