-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (73 loc) · 2.47 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang=en>
<head>
<title>Value My Kit</title>
<meta charset=utf-8>
<link rel=stylesheet href=css/main.min.css />
</head>
<body>
<h1>Value My Kit</h1>
<ul id=t>
<li class=a>Kit</li>
<li>Condition</li>
<li class=l>Estimate</li>
</ul>
<div id=w>
<div id=we>
<h2>How much is your old junk worth?</h2>
<h3>Value My Kit will estimate the optimum price of your item.</h3>
<p>Loading...</p>
<form>
<label>Product Name or Keywords</label>
<input type=text name=q placeholder='e.g. "xbox 360" or "harry potter"'>
<label>Product Type</label>
<select name=c>
<option value=Books>Book</option>
<option value=DVD>DVD</option>
<option value=Electronics>Electronics</option>
<option value=Music>Music</option>
<option value=PCHardware>PC Hardware</option>
<option value=Software>Software</option>
<option value=Toys>Toys</option>
<option value=VideoGames>Video</option>
<option value=Books>Video Games</option>
<option value=Blended>All</option>
</select>
<button type=submit>Find My Kit</button>
<div style=clear:both></div>
</form>
</div>
<div id=p>Loading...</div>
<div id=c>
<h2>Tell us about the condition of your item</h2>
<p>Please use the options below to tell us the condition of your item.</p>
<form>
<div style=clear:both></div>
<select name="c">
<option>For Parts Not Working</option>
<option>Acceptable</option>
<option>Good</option>
<option>Very Good</option>
<option selected>Used</option>
<option>Seller Refurbished</option>
<option>Manufacturer Refurbished</option>
<option>New With Defects</option>
<option>New</option>
</select>
<button type=submit>Get My Estimate</button>
<div style=clear:both></div>
</form>
</div>
<div id=e>Loading...</div>
</div>
<div id=f>By <a href=http://lqdinternet.com/ target=_blank>LQD Internet</a></div>
<div id=al></div>
<script src=http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js></script>
<script src=js/app.min.js></script>
<script>
$().ready(function() {
vmk.init();
});
</script>
</body>
</html>