-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (63 loc) · 1.26 KB
/
index.html
File metadata and controls
67 lines (63 loc) · 1.26 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
63
64
65
66
67
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="index.css">
<title></title>
</head>
<body>
<header>
<h2>Number Plate Search</h2>
</header>
<p id="info"></p>
<div id="form">
Númer: <input id="numer" type="text" name="Numer">
<button type"button" onclick="getInfo(document.getElementById('numer').value)">Get Info</button>
</div>
<table>
<tr>
<td>Bílategund</td>
<td id="type"></td>
</tr>
<tr>
<td>Undirtegund</td>
<td id="subType"></td>
</tr>
<tr>
<td>Litur</td>
<td id="color"></td>
</tr>
<tr>
<td>Skráningar númer</td>
<td id="registryNumber"></td>
</tr>
<tr>
<td>Verksmiðjunúmer</td>
<td id="factoryNumber"></td>
</tr>
<tr>
<td>Skráður á númer</td>
<td id="registeredAt"></td>
</tr>
<tr>
<td>Meingun</td>
<td id="pollution"></td>
<tr>
<td>Þyngd</td>
<td id="weight"></td>
</tr>
<tr>
<td>Staða</td>
<td id="status"></td>
</tr>
<tr>
<td>Næsta skoðun</td>
<td id="nextCheck"></td>
</tr>
</table>
<footer>
<p>Footer</p>
</footer>
<script src="index.js"></script>
</body>
</html>