Skip to content

Commit 6ed5f7a

Browse files
Update Question3.html
1 parent a278815 commit 6ed5f7a

File tree

1 file changed

+26
-25
lines changed

1 file changed

+26
-25
lines changed

templates/Question3.html

Lines changed: 26 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,41 @@
11
<!DOCTYPE html>
22
<html lang="en">
33
<head>
4-
<meta charset="UTF-8">
5-
<title>Contact Us Form</title>
6-
<link rel="stylesheet" href="styleQ3.css">
4+
<meta charset="UTF-8">
5+
<title>Contact Us</title>
6+
<link rel="stylesheet" href="styleQ3.css">
77
</head>
88
<body>
99

10-
<h1>Contact Us Form</h1>
10+
<h1>Contact Us Form</h1>
1111

12-
<div class="container">
13-
<form>
14-
<label for="fname">First Name</label>
15-
<input type="text" id="fname" name="firstname" placeholder="Your name.." required>
12+
<div class="container">
13+
<form>
14+
<label for="fname">First Name</label>
15+
<input type="text" id="fname" name="firstname" required>
1616

17-
<label for="lname">Last Name</label>
18-
<input type="text" id="lname" name="lastname" placeholder="Your last name.." required>
17+
<label for="lname">Last Name</label>
18+
<input type="text" id="lname" name="lastname" required>
1919

20-
<label for="email">Email</label>
21-
<input type="email" id="email" name="email" placeholder="Your email.." required>
20+
<label for="email">Email</label>
21+
<input type="email" id="email" name="email" required>
2222

23-
<label for="country">Country</label>
24-
<select id="country" name="country" required>
25-
<option value="india">India</option>
26-
<option value="australia">Australia</option>
27-
<option value="canada">Canada</option>
28-
<option value="usa">USA</option>
29-
<option value="uk">UK</option>
30-
</select>
23+
<label for="country">Country</label>
24+
<select id="country" name="country" required>
25+
<option value="">Select</option>
26+
<option>India</option>
27+
<option>Australia</option>
28+
<option>Canada</option>
29+
<option>USA</option>
30+
<option>UK</option>
31+
</select>
3132

32-
<label for="subject">Subject</label>
33-
<textarea id="subject" name="subject" placeholder="Write something.." required></textarea>
33+
<label for="subject">Subject</label>
34+
<textarea id="subject" name="subject" required></textarea>
3435

35-
<input type="submit" value="Submit">
36-
</form>
37-
</div>
36+
<input type="submit" value="Submit">
37+
</form>
38+
</div>
3839

3940
</body>
4041
</html>

0 commit comments

Comments
 (0)