-
Notifications
You must be signed in to change notification settings - Fork 24
/
index.html
44 lines (41 loc) · 945 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>JDLT Dev Challenge</title>
</head>
<body>
<h1>Product pricing</h1>
<form>
<label for="selSupplier">Supplier</label>
<select id="selSupplier">
<option>xxxx</option>
</select>
<label for="selProduct">Product</label>
<select id="selProduct">
<option>xxxx</option>
</select>
</form>
<h2>Product details</h2>
<table>
<thead>
<tr>
<th>#</th>
<th>Supplier</th>
<th>Product</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<tr>
<td>x</td>
<td>xxxx</td>
<td>xxxx</td>
<td>xxxx</td>
</tr>
</tbody>
</table>
</body>
</html>