-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathid_card.html
More file actions
61 lines (46 loc) · 1004 Bytes
/
id_card.html
File metadata and controls
61 lines (46 loc) · 1004 Bytes
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
<!-- Display an ID Application form -->
<html>
<head>
<title>New ID Card</title>
<style>
/*body { background: url(license.jpg) no-repeat right bottom; }*/
</style>
</head>
<body>
<p>Can you present a form to collect the data needed for an ID card?</p>
<form>
<div><input type="radio" name="title">Apollo 13</input>
<input type="radio" name="title">Star Wars</input>
<input type="radio" name="title">Minority Report</input></div>
<div><input type="radio" name="actor">Apollo 13</input>
<input type="radio" name="actor">Star Wars</input>
<input type="radio" name="actor">Minority Report</input></div>
<input type="date">
</form>
<!-- Some common form elements:
input
label
textarea
select
-->
<!-- Input types you can try:
checkbox
color
date
datetime
datetime-local
email
hidden
month
number
password
range
search
submit
tel
time
url
week
-->
</body>
</html>