forked from IMQS/onboard-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (29 loc) · 933 Bytes
/
index.html
File metadata and controls
32 lines (29 loc) · 933 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>JS Onboard Project</title>
<link rel="stylesheet" href="stylesheet.css">
<script type="text/javascript" charset="utf-8" src="third_party/jquery-2.0.3.min.js"></script>
<script type="text/javascript" charset="utf-8" src="api-service.js"></script>
<script type="text/javascript" charset="utf-8" src="grid-template.js"></script>
<script type="text/javascript" charset="utf-8" src="app.js"></script>
</head>
<body>
<div class="parentContainer">
<div class="myGrid"></div>
<div class="controls">
<div class="form-grid">
<form id="searchForm">
<label for="#search">Search: </label>
<input id="search" type="text" placeholder="Type in an ID"></input>
<input value="Submit" type="submit"></input>
</form>
</div>
<div class="control-grid">
<button id="prev">Previous</button>
<button id="next">Next</button>
</div>
</div>
</div>
</body>
</html>