-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (28 loc) · 1.3 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
<html>
<head>
<meta name='viewport' content='width=device-width, initial-scale=1.0, user-scalable=0' > <!-- disable zoom in on mobile -->
<title>
Tool Finder
</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="css.css" type="text/css" />
<link rel="stylesheet" href="auto-complete.css" type="text/css" />
<link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Open+Sans" />
<link rel="stylesheet" href="jquery-ui.min.css" type="text/css" />
<link rel="stylesheet" href="jquery-ui.theme.min.css" type="text/css" />
<link rel="stylesheet" href="jquery-ui.structure.min.css" type="text/css" />
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="jquery-ui.min.js"></script>
<script type="text/javascript" src="auto-complete.js"></script>
<script type="text/javascript" src="app.js"></script>
</head>
<body>
<div id="searchContainer">
<lablel>Search:
<input id="toolSearch" />
</lablel>
</div>
<img src='help.png' alt='help' class='help'></img>
<img src='reset.png' alt='reset' class='reset' />
</body>
</html>