-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
executable file
·122 lines (106 loc) · 5.03 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>TeenZee - Navigating Teenage Life</title>
<link rel="stylesheet" href="style/style.css">
<!-- Add icon library -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<!-- Header section -->
<header>
<a href="home.html"><img class="h-logo" src="pictures/teenzee-logo.webp" alt=""></a>
<h1>Welcome to TeenZee</h1>
<p><b>Your guide to navigating life as a teenager</b></p>
</header>
<main>
<!-- Navigation Bar -->
<nav>
<a href="form.php">Register</a>
<a href="about.html">About Us</a>
<a href="contact.html">Contact</a>
<a href="resources.html">Resources</a>
<a href="home.html"> Home</a>
</nav>
<!-- Main Content -->
<section class="contact-page">
<h2><b>Contact Us | TeenZee</b></h2>
<p>Welcome to TeenZee's Contact Page! We are here to support and guide teenagers through their journey of
growth, learning, and opportunity in tech. Whether you're looking for advice, career guidance, or have
questions about our platform, we’re just a message away.</p>
</section>
<section class="contact-info">
<h2>Contact Information</h2>
<ul>
<li>
<ol><b>Email Us:</b></ol>
</li>
Reach out to us anytime at (contact@teenzee.com) or (victorchibuzor@gmail.com) for general inquiries,
collaboration opportunities,
or any questions you may have
<li>
<ol><b>Call us:</b></ol>
</li>
Our support team is available from Monday to Friday, 9:00 AM - 5:00 PM.
Phone: +234 (9024088860).
<li>
<ol><b>Visit Us:</b></ol>
<ul>
<li>TeenZee Office,</li>
<li>Km 2 Ayetoro-Iloro, Road.</li>
<li>Ekiti, Ekiti State, Nigeria</li>
</ul>
</li>
</ul>
</section>
<div class="contact-social">
<b>Social Media</b><br>
Follow us and stay updated on our latest tech tutorials, remote gigs, and motivational resources:
<ul>
<li><a href="https://www.facebook.com/victor chibuike" target="_blank">Facebook:</a></li>
<li><a href="https://www.instagram.com" target="_blank">Instagram:</a></li>
<li><a href="https://www.twitter.com/viktor chibuike" target="_blank">Twitter or X</a></li>
</ul>
</div>
<div class="contact-msg">
<b>Send Us a Message</b><br>
If you have a question, suggestion, or just want to say hi, fill out the form below,
and we'll get back to you within 24-48 hours!
<form action="submit_form.php" method="POST">
<label for="name" placeholder="Name">Name:</label>
<input type="text" id="name" name="name" required><br>
<label for="email" placeholder="Email">Email:</label>
<input type="email" id="email" name="email" required><br><br>
<label for="message">Message:</label>
<textarea id="message" name="message" rows="8" cols="80" required></textarea><br><br>
<input type="submit" value="Send Message">
</form>
</div>
<div class="space"></div>
<!-- Footer -->
<footer>
<p>Follow us on social media:</p>
<ul>
<li><a href="https://www.facebook.com/victor chibuike" target="_blank">Facebook</a></li>
<li><a href="https://www.instagram.com" target="_blank">Instagram</a></li>
<li><a href="https://www.twitter.com/viktor chibuike" target="_blank">X (Twitter)</a></li>
<li><a href="mailto:support@teenzee.com">Email Us</a></li>
</ul>
</footer>
<!--Footer-->
<footer>
<p>Follow us on social media:</p>
<ul>
<li><a href="https://www.facebook.com/victor chibuike" target="_blank">Facebook</a></li>
<li><a href="https://www.instagram.com" target="_blank">Instagram</a></li>
<li><a href="https://www.twitter.com/viktor chibuike" target="_blank">X (Twitter)</a></li>
<li><a href="mailto:support@teenzee.com">Email Us</a></li>
</ul>
<p>© 2024 TeenZee. All rights reserved.</p>
</footer>
</body>
</html>