-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
193 lines (182 loc) · 7.13 KB
/
index.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="robots" content="noindex, nofollow"> <!-- Remove before pushing to production -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CivicCanvas - By Logie Web Services NZ</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Metropolitano:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
</head>
<body>
<!-- Navigation Section -->
<header>
<nav class="main-nav">
<div class="logo">
<a href="index.html">
<img src="assets/images/logo.jpg" alt="Template Logo">
</a>
<span class="logo-text"></span> <!-- You can add text next to the logo image here -->
</div>
<button class="mobile-menu-btn" aria-label="Toggle mobile menu">
<span></span>
<span></span>
<span></span>
</button>
<div class="nav-menu">
<a href="index.html" class="nav-item active">Link 1</a>
<a href="#what-we-do" class="nav-item">Link 2</a>
<a href="#get-involved" class="nav-item">Link 3</a>
<a href="#join" class="nav-item">JOIN</a>
<button class="donate-btn">DONATE</button>
</div>
</nav>
</header>
<main>
<!-- Hero Section -->
<section class="hero">
<div class="hero-content">
<h1>This is your header text!</h1>
<p>Some more text can go here</p>
<button class="cta-button">SEE MORE</button>
</div>
</section>
<!-- Get Help Section -->
<section id="what-we-do" class="get-help">
<p class="help-description">A description of what the website and/or service provides can go here. The possibilities are endless!</p>
<div class="service-cards">
<div class="service-card">
<i class="fas fa-file-medical fa-3x"></i>
<h3>Service #1</h3>
<p>Some really cool text</p>
</div>
<div class="service-card">
<i class="fas fa-home fa-3x"></i>
<h3>Service #2</h3>
<p>Some really cool text</p>
</div>
<div class="service-card">
<i class="fas fa-hands-helping fa-3x"></i>
<h3>Service #3</h3>
<p>Some really cool text</p>
</div>
<div class="service-card">
<i class="fas fa-ambulance fa-3x"></i>
<h3>Service #4</h3>
<p>Some really cool text</p>
</div>
</div>
<div class="contact-info">
<h3>Contact Our Support Team</h3>
<p>Welfare Facilitator, Joe Blog: 000-123-4567</p>
<p>President, Jane Doe: 000-7654-321</p>
<p>Office Phone: 01-234-5678</p>
</div>
</section>
<!-- Get Involved Section -->
<section id="get-involved" class="get-involved">
<h2>GET INVOLVED</h2>
<h3>Motivating paragraph</h3>
<div class="involvement-options">
<div class="involvement-card">
<i class="fas fa-users fa-3x"></i>
<h4>VOLUNTEER</h4>
<p>Motivating paragraph</p>
</div>
<div class="involvement-card">
<i class="fas fa-handshake fa-3x"></i>
<h4>PARTNERSHIPS</h4>
<p>Some cool text</p>
</div>
<div class="involvement-card">
<i class="fas fa-bullhorn fa-3x"></i>
<h4>ADVOCATE</h4>
<p>Some cool text</p>
</div>
</div>
</section>
<!-- Membership Section -->
<section id="join" class="membership">
<div class="membership-content">
<h2>JOIN OUR COMMUNITY OF<br>
<span class="highlight">SOMETHING</span></h2>
<p>Some great call to action here!</p>
<button class="join-button">JOIN NOW!</button>
</div>
</section>
<!-- What's New Section -->
<section class="whats-new">
<h2>WHAT'S NEW</h2>
<div class="news-grid">
<div class="news-card featured">
<img src="assets/images/imgplaceholder_500.webp" alt="Events">
<div class="news-content">
<h3>Services</h3>
<p>Relevant text ahoy</p>
</div>
</div>
<div class="news-card">
<img src="assets/images/imgplaceholder_500.webp" alt="Support">
<div class="news-content">
<h3>Support Updates</h3>
<p>Some cool text</p>
</div>
</div>
<div class="news-card">
<img src="assets/images/imgplaceholder_500.webp" alt="Community">
<div class="news-content">
<h3>Community Events</h3>
<p>Some relevant text goes here!</p>
</div>
</div>
</div>
</section>
</main>
<!-- Footer Section -->
<footer>
<div class="footer-content">
<div class="footer-sections">
<div class="footer-section">
<h3>Contact Us</h3>
<p>Office Phone: 06 345 5750</p>
<p>Service Facilitator: 021 115 8905</p>
<p>Location: Somewhere Fancy</p>
</div>
<div class="footer-section">
<h3>Quick Links</h3>
<ul>
<li><a href="#">Entitlements</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">History</a></li>
</ul>
</div>
<div class="footer-section">
<h3>Follow Us</h3>
<div class="social-links">
<a href="https://www.facebook.com/yourpage" aria-label="Visit our Facebook page">
<i class="fab fa-facebook"></i>
</a>
<a href="https://bsky.app/profile/yourprofile" aria-label="Visit our BlueSky profile">
<i class="fab fa-twitter"></i>
</a>
<a href="https://www.instagram.com/yourprofile" aria-label="Visit our Instagram profile">
<i class="fab fa-instagram"></i>
</a>
</div>
</div>
</div>
<div class="footer-bottom">
<p>© 2024. All Rights Reserved.</p>
</div>
</div>
</footer>
<script src="assets/js/main.js"></script>
</body>
</html>