-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (34 loc) · 1.05 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Google Knowledge Graph API Tool</title>
<meta name="robots" content="noindex, follow" />
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<form>
<label for="query">Suche:</label>
<input type="text" id="query" name="query" /><br />
<label class="limit-field" for="limit">Limit:</label>
<input type="number" id="limit" name="limit" value="20" required /><br />
<label for="indent">Einrücken:</label>
<input
type="checkbox"
id="indent"
name="indent"
checked="checked"
value="true"
/><br />
<label for="languages">Sprachen:</label>
<select id="languages" name="languages">
<option value="de">Deutsch</option>
<option value="en">Englisch</option>
<option value="fr">Französisch</option>
</select><br />
<input type="submit" value="Suchen" />
</form>
<pre id="results"></pre>
<script src="scripts.js"></script>
</body>
</html>