-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
35 lines (33 loc) · 1.48 KB
/
popup.html
File metadata and controls
35 lines (33 loc) · 1.48 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Textbook Search</title>
<link rel="stylesheet" href="dist/css/bootstrap.min.css">
<link rel="stylesheet" href="dist/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="main.css">
<link href="https://fonts.googleapis.com/css?family=Titillium+Web:300" rel="stylesheet">
<script type="text/javascript" src="dist/js/jquery-3.1.0.min.js"></script>
<script type="text/javascript" src="dist/js/bootstrap.min.js"></script>
<script type="text/javascript" src="textbooksearch.js"></script>
</head>
<body>
<h3 class="text-center title">Textbook Search <img class="title-icon" src="icon.png"></h3>
<p id="info-text" class="text-muted text-center info-text">You can enter your ISBN here and click search or highlight the ISBN on the
page and click the Textbook Search icon to search.
</p>
<form class="form-inline">
<div class="form-group search-bar">
<label class="sr-only" for="ISBN">Textbook ISBN Number</label>
<div class="input-group">
<div class="input-group-addon">ISBN #</div>
<input id="ISBN" placeholder="Textbook ISBN Number" name="ISBN" class="form-control">
<span class="input-group-btn">
<button type="button" id="search-btn" class="btn btn-primary">Search</button>
</span>
</div>
</div>
</form>
<hr class="separator">
</body>
</html>