-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
86 lines (72 loc) · 3.31 KB
/
about.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
<!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.0">
<link rel="stylesheet" href="css/main.css">
<title>Rotaract Club UG</title>
</head>
<body>
<main>
<section class="glass">
<div class="dashboard"></div>
<nav>
<div class="logo"><a href="index.html"><img src="assets/Rotaract UG logo 1.svg" alt=""></a></div>
<div class="openMenu"><img src="assets/menu.svg" alt="Open Menu"></div>
<ul class="mainMenu">
<li class="active"><a href="about.html">About</a></li>
<li><a href="projects.html">Our projects</a></li>
<li><a href="donation.html">Donate</a></li>
<li><a href="shop.html">Merchandise</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="join-club.html">Join our club</a></li>
<li><a href="contact.html">Contact</a></li>
<div class="closeMenu"><img src="assets/close.svg" alt="Close Menu"></div>
<div class="icons">
<img src="ASSETS/Facebook.svg" alt="Facebook Page link" class="facebook">
<img src="ASSETS/instagram.svg" alt="Instagram Page link" class="instagram">
<img src="ASSETS/twitter.svg" alt="Twitter Page link" class="Twitter">
<img src="ASSETS/whatsapp.svg" alt="Whatsapp Page link" class="whatsapp">
</div>
</ul>
</nav>
<section class="about">
<h1>ABOUT US</h1>
<center>
<img src="assets/people.svg" alt="" class="main-about">
</center>
<div class="about-cta">
<p>
Rotaract clubs bring together people ages 18 and older to exchange ideas with leaders in the
community, develop leadership and professional skills, and have fun through service.
<br> <br>
In communities worldwide, Rotary and Rotaract members work side by side to take action through
service. From big cities to rural villages, Rotaract is changing communities like yours.
</p>
</div>
</section>
<footer>
<p class="footer-text"><img src="assets/copyright.svg" alt="">2021, Rotaract Club, Empowered and Donated by
OJStudioLive.</p>
</footer>
</section>
<div class="circle1"></div>
<div class="circle2"></div>
</main>
<script>
const mainMenu = document.querySelector('.mainMenu');
const closeMenu = document.querySelector('.closeMenu');
const openMenu = document.querySelector('.openMenu');
openMenu.addEventListener('click', show);
closeMenu.addEventListener('click', close);
function show() {
mainMenu.style.display = 'flex';
mainMenu.style.top = '0';
}
function close() {
mainMenu.style.top = '-250%';
}
</script>
</body>
</html>