-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (35 loc) · 1.34 KB
/
index.html
File metadata and controls
44 lines (35 loc) · 1.34 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
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.1, maximum-scale=1">
<title>Interguide</title>
<link rel="stylesheet" href="lib/bootstrap-3.2.0-dist/css/bootstrap.min.css">
<link rel="stylesheet" href="css/index.css">
<script src="lib/jquery.min.js"></script>
<script src="lib/bootstrap-3.2.0-dist/js/bootstrap.min.js"></script>
<!-- Custom -->
<script src="js/Search.js" type="text/javascript"></script>
<script src="js/Display.js" type="text/javascript"></script>
<script src="js/Loader.js" type="text/javascript"></script>
<script src="js/index.js" type="text/javascript"></script>
</head>
<body>
<div class="wrapper">
<div id="sidebar" class="col-md-4 col-sm-3 col-xs-2">
<div class="steps"><a href="#">Interactive Guideline</a></div>
<br>
<br>
<div class="question" align="center">Question</div>
<br>
<br>
<br>
<div class="answers" align="center"></div>
<div class="search col-md-11 push-to-bottom">
<input id="searchterm" type="text" class="form-control" placeholder="Search term" aria-describedby="basic-addon2">
</div>
</div>
<div id="content" class="col-md-8 col-sm-9 col-xs-10"></div>
</div>
</body>
</html>