-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (23 loc) · 898 Bytes
/
index.html
File metadata and controls
26 lines (23 loc) · 898 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0 user-scalable=no">
<title>Brick Link Set Parser</title>
<!--[if lt IE 9]>
<script src="//html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link rel="stylesheet" href="/css/design.css">
</head>
<body>
<h1>Set Parser</h1>
<p>Enter a lego set id to parse it from bricklink</p>
<input id="setid" type="text" placeholder="Enter Lego set id"/>
<a href="#" id="launchsearch">Launch set parser</a>
<div id="result">
</div>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script type="text/javascript" src="js/blparser.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>