-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
80 lines (79 loc) · 2.94 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/x-icon" href="image/nature.png" />
<title>Contact</title>
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" href="css/w3.css" />
<link rel="stylesheet" href="css/w3pro.css" />
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css" />
<script src="js/w3.js"></script>
<script src="https://www.w3schools.com/lib/w3.js"></script>
</head>
<body>
<div>
<!-- Navigation (Stays on Top) -->
<div id="navDemo" class="w3-top w3-bar w3-black w3-padding-16 w3-mobile">
<a href="index.html"
><img
class="w3-display-left"
src="image/nature.png"
style="width: 60px; padding-left: 10px"
/></a>
<div style="padding-left: 60px">
<a href="index.html" class="w3-bar-item w3-button">Home</a>
<a href="about.html" class="w3-bar-item w3-button">About</a>
<a href="#members" class="w3-bar-item w3-button">Members</a>
<a href="contact.html" class="w3-bar-item w3-button">Contact</a>
</div>
</div>
<!--email-->
<div
style="margin: 20%; text-align: center; border-radius: 50px"
class="w3-container w3-card-4 w3-padding-16 w3-teal"
>
<form name="contact" method="POST" data-netlify="true">
<p>
<label>Your Name: <input class="w3-input w3-round-large"
type="text"
placeholder="Your name"
required type="text" name="name" /></label>
</p>
<p>
<label>Your Email: <input class="w3-input w3-round-large"
type="email"
placeholder="Your email address"
required type="email" name="email" /></label>
</p>
<p>
<label>Message: <textarea class="w3-input w3-border w3-round-large"
style="resize: none"
autocomplete="off"
required name="message"></textarea></label>
</p>
<p>
<button class="w3-button w3-round-large w3-hover-red w3-black"
type="reset"
value="Reset">Reset</button>
<button class="w3-button w3-round-large w3-hover-green w3-black" type="submit">Submit</button>
</p>
</form>
</div>
<div style="display: block; margin-top: auto">
<div class="w3-container w3-black w3-center w3-padding-16 footer">
<a href="#help" class="w3-bar-item w3-button">Help</a>
<a href="#send feedback" class="w3-bar-item w3-button"
>Send feedback</a
>
<a href="#privacy policy" class="w3-bar-item w3-button"
>Privacy Policy</a
>
<a href="#terms of service" class="w3-bar-item w3-button"
>Terms of Service</a
>
</div>
</div>
</div>
</body>
</html>