-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservices.html
149 lines (140 loc) · 5.85 KB
/
services.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Services - Anti-Covid19 Social Club</title>
<!-- Favicon -->
<link rel="shortcut icon" href="img/logo/favicon.ico" type="image/x-icon">
<!-- CSS Files -->
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/grid.css">
</head>
<body>
<!-- ! do not use html section tag -->
<div id="page">
<div id="content">
<!-- header section -->
<header>
<!-- nav section -->
<nav class="container">
<input type="checkbox" name="" id="check">
<div class="logo-container">
<img src="img/logo/logo-icon.png" alt="Anti-Covid19 Social Club logo" class="logo-img">
<h3 class="logo">Anti-Covid19 Social Club</h3>
</div>
<div class="nav-btn">
<div class="nav-links">
<ul>
<li class="nav-link" style="--i: .6s">
<a href="index.html">Home</a>
</li>
<li class="nav-link" style="--i: .85s">
<a href="covid19/">About COVID-19</a>
<div class="dropdown">
<ul>
<li class="dropdown-link">
<a href="covid19/symptoms.html">Symptoms</a>
</li>
<li class="dropdown-link">
<a href="covid19/transmission.html">Transmission</a>
</li>
<li class="dropdown-link">
<a href="covid19/prevention.html">Prevention</a>
</li>
<li class="dropdown-link">
<a href="covid19/first-aid.html">First Aid</a>
</li>
<li class="dropdown-link">
<a href="covid19/procedure.html">Procedures</a>
<div class="dropdown second">
<ul>
<li class="dropdown-link">
<a href="covid19/testing-procedure.html">Testing Procedure</a>
</li>
<li class="dropdown-link">
<a href="covid19/quarantine-procedure.html">Quarantine Procedure</a>
</li>
<div class="arrow"></div>
</ul>
</div>
</li>
<div class="arrow"></div>
</ul>
</div>
</li>
<li class="nav-link" style="--i: 1.1s">
<a href="">Our Services</i></a>
<div class="dropdown">
<ul>
<li class="dropdown-link">
<a href="#donate">Donate</a>
</li>
<li class="dropdown-link">
<a href="#membership">Membership</a>
</li>
<li class="dropdown-link">
<a href="#event">Events</a>
</li>
<div class="arrow"></div>
</ul>
</div>
</li>
<li class="nav-link" style="--i: 1.35s">
<a href="gallery.html">Gallery</a>
</li>
<li class="nav-link" style="--i: 1.35s">
<a href="contact.html">Contact Us</a>
</li>
</ul>
</div>
</div>
<div class="hamburger-menu-container">
<div class="hamburger-menu">
<div></div>
</div>
</div>
</nav>
</header>
<!-- main section -->
<main>
<div class="content">
<h1><mark>Services</mark></h1>
<br>
<div class="poster">
<div id="donate">
<h2>Donate</h2>
<br>
<a href="https://forms.gle/df1bDQgGxh8vHZwU9" target="_blank">
<img src="img/poster/Anti-Covid19 Social Club Donation Fundraising Poster.png" alt="Anti-Covid19 Social Club Donation Fundraising Poster">
</a>
</div>
<div id="membership">
<h2>Become a member</h2>
<br>
<a href="https://forms.gle/taK5Q9gVa8VJSLEZ7" target="_blank">
<img src="img/poster/Anti-Covid19 Social Club Membership Application Poster.png" alt="Anti-Covid19 Social Club Membership Application Poster">
</a>
</div>
<div id="event">
<h2>Upcoming event(s)</h2>
<br>
<h3>Smile Behind The Mask</h3>
<a href="https://forms.gle/Mnhmp6yNHyuvEQZ48" target="_blank">
<img src="img/poster/Smile Behind The Mask Event Poster.png" alt="Smile Behind The Mask Event Poster">
</a>
<p><a href="img/poster/Smile Behind The Mask Event Poster.png" target="_blank">See poster</a> | <a href="https://forms.gle/Mnhmp6yNHyuvEQZ48" target="_blank">Join event</a></p>
</div>
</div>
</div>
</main>
</div>
</div>
<!-- footer section -->
<footer>
<strong>© 2020 Anti-Covid19 Social Club. All rights reserved.</strong><br>
Created with <img src="img/fontawesome/svg/heart.svg" alt="heart" width="15px"> by <a href="https://mksalada.webnode.com/" target="_blank" rel="noopener noreferrer">M.K. Salada</a><br>
<a rel="license" href="http://creativecommons.org/licenses/by-nc/4.0/"><img alt="This work is licensed Attribution-NonCommercial 4.0 International License." style="border-width:0" src="https://i.creativecommons.org/l/by-nc/4.0/88x31.png" /></a>
</footer>
</body>
</html>