-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
145 lines (129 loc) · 4.31 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>BooKey</title>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, shrink-to-fit=no"
/>
<meta name="description" content="Modernizing the habit of Reading!" />
<meta
name="google-signin-client_id"
content="245803004661-8030jbpbru36eeg4kfqdobjj4iccq77p.apps.googleusercontent.com.apps.googleusercontent.com.apps.googleusercontent.com"
/>
<meta name="google-signin-cookiepolicy" content="single_host_origin" />
<meta
name="google-signin-requestvisibleactions"
content="https://schema.org/AddAction"
/>
<meta
name="google-signin-scope"
content="https://www.googleapis.com/auth/plus.login"
/>
<link
rel="stylesheet"
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Lobster"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link rel="icon" type="image/png" href="images/logo.png" />
<link rel="stylesheet" href="main.css" />
<!-- Generated form realfavicongenerator.net -->
<link
rel="icon"
type="image/png"
sizes="32x32"
href="favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="favicon/favicon-16x16.png"
/>
<link
rel="mask-icon"
href="favicon/safari-pinned-tab.svg"
color="#232375"
/>
<meta name="msapplication-TileColor" content="#232375" />
<meta name="theme-color" content="#232375" />
<link rel="manifest" href="manifest.json" />
<link rel="icon" type="image/png" sizes="32x32" href="favicon.ico" />
<!-- <link rel="icon" type="image/png" sizes="144x144" href="android-chrome-144x144.png"> -->
<!-- <link rel="icon" type="image/png" sizes="152x152" href="apple-touch-icon.png"> -->
</head>
<body>
<div class="container-fluid">
<header>
<nav>
<ul class="nav nav-pills">
<span class="hamburger">
<a href="#">
<svg width="30" height="30">
<path d="M0,5 30,5" stroke="#000" stroke-width="5" />
<path d="M0,14 30,14" stroke="#000" stroke-width="5" />
<path d="M0,23 30,23" stroke="#000" stroke-width="5" />
</svg>
</a>
</span>
<li class="pull-right last"><a>Sign Up</a></li>
<li class="pull-right"><a href="#">LogIn</a></li>
<li class="pull-right"><a href="#">Categories</a></li>
<li class="pull-right"><a href="#">Home</a></li>
</ul>
</nav>
</header>
<!-- SIDE MENU -->
<div class="side-nav">
<a href="#" class="btn-close">×</a>
<a href="#">Home</a>
<a href="#">Categories</a>
<a href="#">Sign Up</a>
<a href="#">LogIn</a>
</div>
<main>
<div class="text-center">
<h1>BooKey</h1>
<h3 class="description">
Modernizing the Habit of Reading and Writing!
<p class="sign-in" style="color: red; cursor: pointer;">sign in</p>
</h3>
</div>
<!-- <div class="text-center"> -->
<form id="searchForm" class="text-center">
<!-- <label for="searchInput">Search for Books: (required) </label> -->
<div class="form-group">
<input
required
id="searchInput"
type="search"
placeholder="Search for books, article..."
/>
<button type="submit" id="searchButton">
<strong>GO!</strong>
</button>
</div>
</form>
<!-- </div> -->
<!-- <div id="loading"></div> -->
<div id="responseContainer"></div>
<button
class="back-to-top fa fa-arrow-up hide"
title="Move to top"
></button>
</main>
</div>
<script src="https://apis.google.com/js/platform.js" async defer></script>
<script src="app.js"></script>
<script src="manifest.js"></script>
</body>
</html>