-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.html
executable file
·49 lines (40 loc) · 1.73 KB
/
search.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<title>Voicelet</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.css" rel="stylesheet">
<!-- Add custom CSS here -->
<link href="css/business-casual.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="icon" type="image/png" href="https://cdn1.iconfinder.com/data/icons/metro-uinvert-dock/256/Microphone_1.png"/>
</head>
<body>
<div class="brand">Voicelet</div>
<nav class="navbar navbar-default" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">Voicelet</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
</div><!-- /.container -->
</nav>
<div class="input-group" id="search">
<span class="input-group-addon searching"><img src="img/search.svg" class="icon"></span>
<input type="text" class="form-control" placeholder="Search" id="box" autofocus>
</div>
<div id="searchResults" class="results"></div>
<footer class="footer"> Your virtual study buddy. </footer>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src ="search.js"></script>
</body>