-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (54 loc) · 1.71 KB
/
index.html
File metadata and controls
62 lines (54 loc) · 1.71 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Web Scraper</title>
<link rel="stylesheet" href="main.css" type="text/css" media="all">
<script src="https://cdn.jsdelivr.net/npm/js-cookie@2/src/js.cookie.min.js"></script>
<script src="js/jquery-3.2.1.min.js" type="text/javascript"></script>
<script src="js/webscraper.js" type="text/javascript"></script>
<script src="js/main.js" type="text/javascript"></script>
</head>
<body>
<!-- Headers and Titles -->
<div id="heading">
<h1>Web Scraper</h1>
<h2>For species names list from</h2>
<h4><a href="http://www.iucnredlist.org/search">http://www.iucnredlist.org/search</a></h4><br>
</div>
<table border="1" align="center">
<!-- Base URL -->
<tr>
<td colspan="4" id="labelBase">
</td>
</tr>
<!-- Page range header -->
<tr>
<td colspan="4">Page Range</td>
</tr>
<!-- Page range input -->
<tr>
<td class="label">From</td><td><input class="page" id="pfrom" type="text" value="1" placeholder="1"></td>
<td class="label">To</td><td><input class="page" id="pto" type="text" value="35" placeholder="35"></td>
</tr>
<!-- Control Panel -->
<tr>
<td colspan="4" id="controls">
<input id="btnScrape" type="button" value="Scrape">
<input id="btnDownload" type="button" value="Download File" onclick="">
<input id="btnReset" type="button" value="Reset">
<input id="btnStop" type="button" value="Stop">
</td>
</tr>
<!-- Output processing log -->
<tr>
<td colspan="4" id="labelLoading">
</td>
</tr>
</table>
<br><br>
<div id="heading">
<span style="font-size:10px;">Having errors loading data? Please read the</span>
<h2><a href="https://github.com/ciatph/webscraper">Usage Guide</a></h2>
</div>
</body>
</html>