-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
22 lines (22 loc) · 967 Bytes
/
contact.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!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 style="background-color:pink;padding-left: 5%;">
<!-- Give the code for the contact us form -->
<center><h2>Contact Us</h2></center>
<form action="contact.php" method="post">
<label for="name">Name:</label>
<input type="text" name="name" id="name" placeholder="Enter your name" required><br><br>
<label for="email">Email:</label>
<input type="email" name="email" id="email" placeholder="Enter your email" required><br><br>
<label for="message">Message:</label>
<textarea name="message" id="message" cols="30" rows="10" placeholder="Enter your message" required></textarea><br><br>
<input type="submit" value="Submit">
<input type="reset" value="Refresh">
</form>
</body>
</html>