forked from lameesad/HTML5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
83 lines (63 loc) · 2.43 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
81
82
83
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>HTML5</title>
<link rel="stylesheet" href="assets/css/style.css">
<script src="assets/js/scripts.js"></script>
</head>
<body id="contact">
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="educate.html">Educate</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<h1> Contact Us </h1>
<div id="map"></div>
<script src="http://maps.googleapis.com/maps/api/js?key=AIzaSyCk-sclQU-Fj4T9EHZcW5RJ4_EUXhj2g-I"></script>
<!-- <section style="text-align: center; margin-top: 30%;padding-bottom: 20px;">
<label>Name: </label>
<input type="text" required><br>
<label>Email: </label>
<input type="email"><br>
<input type="submit" primary>
</section> -->
<div class="f-body">
<div id="f-form">
<h3 class="center">Contact us</h3>
<form id="f-form-id" class="f-form-class">
<div class="f-form-group">
<label for="Name" class="f-label">Your name</label>
<div class="f-input-group">
<input type="text" id="Name" name="Name" class="f-form-control" required>
</div>
</div>
<div class="f-form-group">
<label for="Email" class="f-label">Your email address</label>
<div class="f-input-group">
<input type="email" id="Email" name="Email" class="f-form-control" required>
</div>
</div>
<div class="f-form-group">
<label for="Message" class="f-label">Your message</label>
<div class="f-input-group">
<textarea id="Message" name="Message" class="f-form-control" rows="6" maxlength="3000"
required></textarea>
</div>
</div>
<div class="f-form-group">
<button type="submit" id="f-button" class="f-btn f-btn-lg f-btn-block">Send
Message</button>
</div>
</form>
</div>
</div>
<footer>
<span>HTML5 template by Lamees</span>
</footer>
</body>
</html>