-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathq3.html
48 lines (48 loc) · 1.37 KB
/
q3.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
<!-- 3)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>Contact form</title>
</head>
<body>
<center>
<h1>Contact us</h1>
<form>
<table>
<tr>
<td>First Name</td>
</tr>
<tr>
<td><input type="text" placeholder="Your name..."></td>
</tr>
<tr>
<td>Last Name</td>
<tr>
<td><input type="text" placeholder="Your last name..."></td>
</tr>
<tr>
<td>E-mail</td>
</tr>
<tr>
<td><input type="email" placeholder="Enter your mail..."></td>
</tr>
<tr>
<td>Course</td>
<td><select>
<option>FullStack</option>
<option>Frontend</option>
<option>Backend</option>
</select>
</td>
</tr>
<tr>
<td><input type="submit"></td><td><input type="reset"></td>
</tr>
</table>
</form>
<a href="https://www.guvi.in/sanjayramachandran200234492" target="_blank">Contact us for more</a>
</center>
</body>
</html>