-
Notifications
You must be signed in to change notification settings - Fork 0
/
contactus.html
48 lines (45 loc) · 1.13 KB
/
contactus.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Contact US</title>
<link rel="stylesheet" href="contactus.css" />
</head>
<body>
<div class="container">
<form action="https://formspree.io/f/xqkjpbey" method="POST">
<h3>Get In Touch</h3>
<input
type="text"
id="name"
placeholder="Enter Your Name"
name="Name"
required
/>
<input
type="email"
id="email"
name="Email"
placeholder="Enter Email Address"
required
/>
<input
type="text"
id="phone"
name="Phone"
placeholder="Enter Your Phone Number"
required
/>
<textarea
id="message"
rows="10"
name="Message"
placeholder="How Can We Help You.?"
></textarea>
<button id="button" type="submit">Send Message</button>
</form>
</div>
</body>
</html>