-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (27 loc) · 1.15 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Contact us</title>
<link rel="stylesheet" type="text/css" href="./styles/style.css">
<link href="https://fonts.googleapis.com/css?family=Quicksand&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0">
<title>Contact us</title>
</head>
<body>
<div class="container">
<div class="contact-box">
<div class="left"></div>
<div class="right">
<form action="https://formspree.io/f/mqkoarve" method="POST">
<h2>Contact Us</h2>
<input type="text" class="field" name="name" placeholder="Your Name" required>
<input type="text" class="field" name="email" placeholder="Your Email" required>
<input type="text" class="field" name="contact" placeholder="Phone" required>
<textarea placeholder="Message Us" name="text" class="field"></textarea>
<button type="submit" class="btn">Send</button>
</form>
</div>
</div>
</div>
</body>
</html>