-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (20 loc) · 894 Bytes
/
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
<html>
<head>
<script src="/app.js"></script>
<link rel="stylesheet" type="text/css" href="/style.css" />
</head>
<body onload="onLoad()">
<h2>Mémoires d'éléphant</h2>
<form id="searchform">
<h3>Lancer une recherche d'espèce :</h3>
<input id="search" /><button type="button" onclick="onTextSearch()">Search</button>
<br />
<label for="begin">Qui commence avec</label><input type="radio" id="begin" name="Selection" value="begin" checked>
<label for="inclusion">Inclut le terme</label><input type="radio" id="inclusion" name="Selection" value="include">
<br />
<label for="Distribution">Par pays/région</label><input type="radio" id="distribution" name="Selection" value="distribution">
<select id="countries"></select>
</form>
<div style="margin:5px auto; width:50%;" id="res" />
</body>
</html>