-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.html
36 lines (33 loc) · 1.61 KB
/
search.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
<!DOCTYPE html>
<html lang="en">
<head>
<!--Import Google Font-->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=RocknRoll+One&display=swap" rel="stylesheet">
<!--jQuery-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<script src="search.js"></script>
<link rel="icon" href="media/favicon.png">
<title>Tree of Life - Search</title>
</head>
<body>
<nav><h1 style="float: left; position: inline;">Tree of Life</h1>
<p style="float: right;"><a href="index.html">Tree</a> / <a href="search.html">Search</a> / <a href="tree.html">Visual Tree Generator</a></p>
<p id="loading">Loading...</p>
</nav>
<main>
<h1><i>Search</i> for a Taxon</h1>
<form method="">
<input type="text" id="input"/>
<input type="submit" onclick="search(event, document.getElementById('input').value);" value="Search"/>
</form>
<ul id="results"><li>Type a taxon name, and click <i>Search</i>!</li></ul>
</main>
<footer><em>Powered by <a href="https://inaturalist.org/">iNaturalist</a>.</em> Please try to avoid sending requests (by searching / clicking a taxon link) more than 60 times every minute / 10,000 times a day, so there is not too much traffic.
<br/><iframe src="https://webcoder49.github.io/madeby.html"></iframe></footer>
</body>
</html>