-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
66 lines (50 loc) · 1.63 KB
/
contact.html
File metadata and controls
66 lines (50 loc) · 1.63 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
58
59
60
61
62
63
64
65
66
<!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>
<div align="left">
<h3>Contact Me</h3>
<form action="submitform.php" method="POST">
<p>
<label for="first_name">First Name</label><br />
<input type="text" name="first_name" placeholder="Enter Your First Name" /><br />
</p>
<p>
<label for="last_name">Last Name</label><br />
<input type="text" name="last_name" placeholder="Enter Your Last Name" /><br />
</p>
<p>
<label for="email">Email</label><br />
<input type="email" name="email" placeholder="Enter Your Email" required />
</p>
<p>
<label for="department">Department</label><br />
<select name="department">
<option>Select Department</option>
<option>HR</option>
<option>Marketing</option>
<option>Board </option>
<option>Kitchen</option>
</select>
</p>
<p>
<label for="gender">Gender</label><br />
<input type="radio" name="gender" /> Female
<input type="radio" name="gender" /> Male
</p>
<p>
<label for="email">Your Message</label><br />
<textarea name="message"></textarea>
</p>
<p>
<input type="checkbox" name="terms" required /> By Checking this box you agree to our terms and conditions
</p>
<button type="submit">Send Message</button>
</form>
</div>
</body>
</html>