-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (67 loc) · 1.4 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
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
68
<!--
<!DOCTYPE HTML>
<html>
<head>
<title>Quiz competition</title>
</head>
<body>
<!--
<h1>Hello World</h1>
-->
<h2>CatArtPhoto</h2>
<p>List of fruits i want to buy</p>
<ul>
<li>orange</li>
<li>pineapple</li>
<li>watermelon</li>
</ul>
<form action="/submit-QuizCompetition"></form>
<input type="text" placeholder="Your Name" required></br>
<button type="submit">Submit</button></br>
<label for="yes">
<input id="yes" type="radio" name="yes-no">yes
</label>
<label for="no">
<input id="no" type="radio" name="yes-no">no
</label></br>
<label for="loving">
<input id="loving" type="checkbox" name="personality">loving
</label>
</form>
<div class="search">Search the table</div>
<table border="1">
<thead>
<tr> <!--Row 1-->
<th>Company's Name</th>
<th>Number of item to ship</th>
<th>Next Action</th>
</tr>
<tr> <!--Row 2-->
<td>Hayycreationz</td>
<td>25</td>
<td>Package Items</td>
</tr>
<tr> <!--Row 3-->
<td>Davies Burger</td>
<td>15</td>
<td>Send Invoice</td>
</tr>
<tr> <!--Row 4-->
<td>Bakers Bike Shop</td>
<td>3</td>
<td>Send Invoice</td>
</tr>
<tr> <!--Row 5-->
<td colspan="2">Dominos pizza</td>
<td>End order</td>
</tr>
</thead>
</table>
<tfoot>
<tr>
<td>Total</td>
<td>28</td>
</tr>
</tfoot>
</body>
</html>