-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path03-Q.html
More file actions
57 lines (53 loc) · 1.88 KB
/
03-Q.html
File metadata and controls
57 lines (53 loc) · 1.88 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
<!-- Design a contact us form with all fields as required. -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<center>
<form style="background-color: bisque;">
<h1>contact us</h1>
<table>
<tr>
<td>First Name</td>
<td> <input type="text" placeholder="enter your first name" required /></td>
</tr>
<tr>
<td>Last Name</td>
<td> <input type="text" placeholder="enter your last name" required /></td>
</tr>
<tr>
<td>Gender</td>
<td><input type="radio" name="grouping" required />Male
<input type="radio" name="grouping" required />Female
<input type="radio" name="grouping" required />Transgender
</td>
</tr>
<tr>
<tr>
<td>Age</td>
<td><input type="number" placeholder="enter your Age" required />
</td>
</tr>
<tr>
<td>Email</td>
<td><input type="email" placeholder="enter your Email" required /></td>
</tr>
<tr>
<td>Mobile No</td>
<td> <input type="number" placeholder="enter your Mobile No" required /></td>
</tr>
<tr>
<td></td>
<td>
<center><input type="submit" value="Submit" /><br><input type="reset" /></center>
</td>
</tr>
</table>
</form>
</center>
</body>
</html>