-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtrademe.html
More file actions
31 lines (28 loc) · 861 Bytes
/
trademe.html
File metadata and controls
31 lines (28 loc) · 861 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>TradeMe</title>
<meta charset="utf-8" />
<script src="js/jquery-2.1.4.min.js"></script>
<script src="js/get_keyword.js"></script>
<script src="js/trademe.js"></script>
<link href="css/trademe.css" rel="stylesheet" />
</head>
<body>
<div class="container">
<header>
<h1>Search Trademe</h1>
</header>
<div>
<input type="text" id="searchTerm"><span id="searchNow" class="fakelink">Search</span>
<input type="submit" id ="next" value ="Next">
<input type="submit" id ="prev" value ="Prev">
<input type="submit" id ="nextCat" value ="Change Category">
</div>
<div id="content">
<ul id="listings"></ul>
<div id="item"></div>
</div>
</div>
</body>
</html>