-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
22 lines (22 loc) · 1.16 KB
/
form.html
File metadata and controls
22 lines (22 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GET IN TOUCH</title>
<link rel="stylesheet" href="form.css">
<link rel="shortcut icon" href="https://static.vecteezy.com/system/resources/previews/013/800/226/non_2x/close-up-of-businessman-in-black-formal-suit-doing-call-me-sign-finger-gesture-with-showing-phone-3d-illustration-of-businessman-using-phone-png.png" type="image/x-icon">
<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>
</div>
<input type="hidden" name="access_key" value="c1af6ed4-d0b1-4187-af6b-e5946b4cd141">
<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="contact-inputs" required></textarea>
<button type="send">SEND <img src="images/send.png" alt="logo" width="20px"></button>
</form>
</div>
</head>
<body>
</body>
</html>