-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
33 lines (30 loc) · 1.2 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact <Form></Form></title>
<link rel="stylesheet" href="contacts.css">
</head>
<body>
<div class="contact-container">
<form action="https://api.web3forms.com/submit" method="POST" class="contact-left">
<div class="contact-left-title">
<h2>Get in Touch</h2>
<hr>
</div>
<input type="hidden" name="access_key" value="a8c53dd3-8800-415b-ac31-2555798cec74">
<input type="text" name="name" placeholder="Your Name" class="contact-inputs" required>
<input type="email" name="email" placeholder="Your Email" class="contact-inputs" required>
<textarea name="message" placeholder="Your Message" class="contacts-inputs" required></textarea>
<button type="submit">Submit <img src="arrow_icon.png" alt=""></button>
</form>
<div class="contact-right">
<img src="right_img.png" alt="">
</div>
</div>
<div class="backbutton">
<a href="./index.html"><p>back</p></a>
</div>
</body>
</html>