-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
103 lines (92 loc) · 4.66 KB
/
contact.html
File metadata and controls
103 lines (92 loc) · 4.66 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-5RKDK374');</script>
<!-- End Google Tag Manager -->
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-B00TGS19QV"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-B00TGS19QV');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us - Quinnipiac Alumni for Palestine</title>
<link rel="stylesheet" href="styles.css"> <!-- Link to your CSS file -->
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5RKDK374"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<header>
<div class="header-flag">
<div class="logo-container">
<img src="2024_QUAFP_Logo.png" alt="Quinnipiac Alumni for Palestine Logo" class="logo">
</div>
<h1>Quinnipiac Alumni for Palestine</h1>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="archive.html">Archive</a></li>
</ul>
</nav>
</header>
<main>
<div class="container">
<section class="hero">
<h2>Contact Us</h2>
<p>If you have any questions, suggestions, or would like to get involved with Quinnipiac Alumni for Palestine, we'd love to hear from you. We value every message we receive!</p>
</section>
<!-- Contact Email Section -->
<section class="contact-info">
<h3>Get in Touch</h3>
<p>You can reach us directly via email. Please don't hesitate to send us a message, and we'll get back to you as soon as possible.</p>
<p><strong>Email Us:</strong> <a href="mailto:qualumniforpalestine@protonmail.com">qualumniforpalestine@protonmail.com</a></p>
</section>
<!-- Social Media Section -->
<section class="social-media">
<h3>Stay Connected</h3>
<p>Follow us on social media for updates on events, news, and ways to support the cause:</p>
<ul>
<li><strong>Instagram:</strong> <a href="https://instagram.com/qualumniforpalestine" target="_blank">@qualumniforpalestine</a></li>
</ul>
</section>
<!-- Community Engagement Section -->
<section class="join-us">
<h3>Join Our Efforts</h3>
<p>We are always looking for passionate individuals to join us in advocating for Palestinian rights. Whether you're a fellow alumni, student, or community member, we encourage you to reach out and be part of this movement. Together, we can make a difference!</p>
<p>Let us know how you'd like to contribute or what initiatives you'd like to see by emailing us directly at <a href="mailto:qualumniforpalestine@protonmail.com">qualumniforpalestine@protonmail.com</a>.</p>
</section>
<!-- Newsletter Subscription Section (Optional) -->
<!-- If you'd like to add a subscription feature in the future, you can uncomment this.
<section class="newsletter">
<h3>Subscribe to Our Newsletter</h3>
<p>Be the first to know about upcoming events, news, and opportunities to get involved. Stay informed and stay active!</p>
<form action="newsletter_signup.php" method="post">
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<input type="submit" value="Subscribe">
</form>
</section>
-->
</div>
</main>
<footer>
<div class="container">
<p>© 2024 Quinnipiac Alumni for Palestine. All rights reserved.</p>
</div>
</footer>
</body>
</html>