-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
31 lines (31 loc) · 775 Bytes
/
contact.html
File metadata and controls
31 lines (31 loc) · 775 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Contact Us</title>
<style>
body {
font-family: Arial, sans-serif;
}
#contact-form {
width: 300px;
margin: 0 auto;
}
textarea {
width: 100%;
height: 100px;
}
</style>
</head>
<body>
<h1>Contact Us</h1>
<form id="contact-form">
<label for="name">Name:</label><br>
<input type="text" id="name" name="name"><br>
<label for="email">Email:</label><br>
<input type="email" id="email" name="email"><br>
<label for="message">Message:</label><br>
<textarea id="message" name="message"></textarea><br>
<input type="submit" value="Send">
</form>
</body>
</html>