This repository has been archived by the owner on Jun 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (53 loc) · 1.49 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Contact us</title>
<meta name="description" content="Contact Hutoorg's Support team" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/x-icon" href="asset/favicon.png" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<form
action="https://getform.io/f/de0f65f2-85f6-428f-83f8-46b6febab036"
method="post"
>
<h3>Contact us</h3>
<label for="name">Name</label>
<input
type="text"
name="Name"
id="name"
placeholder="Your Name"
required
/>
<label for="email">Email</label>
<input
type="email"
name="Email"
id="email"
placeholder="Email"
required
/>
<label for="phone">Phone no.</label>
<input type="text" name="Phone" id="phone" placeholder="Phone no." />
<label for="message">Name</label>
<textarea
name="Message"
id="message"
rows="4"
placeholder="Message us"
></textarea>
<div class="cf-turnstile" data-sitekey="0x4AAAAAAACPGt5aH9ThMoGi"></div>
<button type="submit" onclick="sub()">Submit</button>
</form>
</div>
<script
src="https://challenges.cloudflare.com/turnstile/v0/api.js"
async
defer
></script>
</body>
</html>