-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
36 lines (31 loc) · 1.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Head content -->
<title>Contact Galen J. Wilkerson</title>
<link rel="stylesheet" href="style.css">
<!-- Add Google reCAPTCHA script -->
<script src='https://www.google.com/recaptcha/api.js'></script>
</head>
<body>
<div class="sidebar">
<!-- Sidebar navigation -->
</div>
<div class="main-content">
<section id="contact">
<h3>Contact</h3>
<form action="submit_form.php" method="post">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required><br><br>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required><br><br>
<label for="message">Message:</label>
<textarea id="message" name="message" required></textarea><br><br>
<!-- Google reCAPTCHA widget -->
<div class="g-recaptcha" data-sitekey="your_site_key"></div><br>
<input type="submit" value="Submit">
</form>
</section>
</div>
</body>
</html>