-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
72 lines (61 loc) · 2.62 KB
/
contact.html
File metadata and controls
72 lines (61 loc) · 2.62 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<header>
<img src="ai.jpg" alt="AI Images" class="header-img">
<h1>AI Images</h1>
</header>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us | AI Images</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Navigation Bar -->
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="gallery.html">Gallery</a>
<a href="contact.html" class="active">Contact Us</a>
</nav>
<!-- Main Content Section -->
<main>
<!-- Contact Section -->
<section id="contact">
<h2>We're Here to Help!</h2>
<p>If you have any questions about our AI-generated artwork, need further information, or simply want to get in touch, don't hesitate to reach out. Fill out the form below, and we'll respond as quickly as possible.</p>
<!-- Contact Information -->
<div class="contact-details">
<h3>Contact Information</h3>
<ul>
<li><strong>Email Us:</strong> <a href="mailto:charlez.wafu@gmail.com">chwrlez.wafu@gmail.com</a></li>
<li><strong>Alternative Email:</strong> <a href="mailto:savingbantay@gmail.com">savingbantay@gmail.com</a></li>
<li><strong>Phone:</strong> (63) 994 273 0935</li>
</ul>
</div>
<!-- Contact Form -->
<section id="contact-form">
<h3>Send Us a Message</h3>
<p>We'd love to hear from you. Please fill out the form below, and we'll get back to you as soon as possible.</p>
<form action="submit_form.php" method="POST">
<div class="form-group">
<label for="name">Name</label>
<input type="text" id="name" name="name" required placeholder="Enter your name">
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" required placeholder="Enter your email">
</div>
<div class="form-group">
<label for="message">Your Message</label>
<textarea id="message" name="message" rows="6" required placeholder="Enter your message here"></textarea>
</div>
<button type="submit" class="submit-btn">Send Message</button>
</form>
</section>
<!-- Footer Section -->
<footer>
<p>© 2024 Saving Bantay. All Rights Reserved.</p>
</footer>
</body>
</html>