-
Notifications
You must be signed in to change notification settings - Fork 9
/
outreach.html
90 lines (86 loc) · 3.55 KB
/
outreach.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
<!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" />
<title>Outreach Programs</title>
<link rel="stylesheet" href="css/outreach.css" />
<link rel="stylesheet" href="css/outreach2.css" />
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
</head>
<body>
<div class="canvas">
<div class="purple"></div>
<div class="medium-blue"></div>
<div class="light-blue"></div>
<div class="red"></div>
<div class="orange"></div>
<div class="yellow"></div>
<div class="cyan"></div>
<div class="light-green"></div>
<div class="lime"></div>
<div class="magenta"></div>
<div class="lightish-red"></div>
<div class="pink"></div>
</div>
<div class="navbar">
<div class="toggle">☰</div>
<a href="./index.html#hero-section" class="nav-item">Home</a>
<a href="./index.html#about-section" class="nav-item">About</a>
<a href="./events.html" class="nav-item">Events</a>
<a href="./blog.html" class="nav-item">Blog</a>
<a href="./index.html#contact-section" class="nav-item">Contact</a>
<a href="outreach.html" class="nav-item">Outreach</a>
</div>
<div class="parent-container">
<img src="Assets/homePage/logo_white.webp" alt="Outreach Programs" />
<h1>SHUNYA - OUTREACH PROGRAMS!</h1>
<p>
Shunya Organises several events and programs throughout the year to
increase it's outreach and show its enthusiastic activity.
</p>
</div>
<div class="program-container">
<div class="program one" data-aos="fade-right">
<h1>MATHBEE</h1>
<h3>16th September 2022</h3>
<p class="programtext">
Bringing out its pearlescent form in all strength in the EC Campus as
well, Club Shunya honored the Engineers’ Day of the year with yet
another fun-filled event. On the 16th of September, we organized
Mathbee: a quiz competition, with a fun twist! Duos and trios of
participants had to rack their brains to answer logical reasoning
questions on Math for round one and a game of Bingo for the second
round. The event proved a huge success.
</p>
</div>
<div class="program two" data-aos="fade-left">
<h1>VICHARAPRAPANCHA</h1>
<h3>29th October 2022</h3>
<p class="programtext">
On the 29th of October, Shunya held one of the most rewarding events-
Vicharaprapancha. Vicharaprapancha was a science fair that was held to
enlighten and upskill government school kids in science and science
related experiments. Vicharaprapancha was truly one of the most
grounding, fun-filled events held by Shunya.
</p>
</div>
<div class="program three" data-aos="fade-right">
<h1>ANVESHANA</h1>
<h3>19th November 2022</h3>
<p class="programtext">
Anveshana is an on-campus Hackathon held at PES University Ring Road
Campus where you will be teamed up with high school students from our
own PES adopted Schools! This is the perfect opportunity for students
to flaunt their skills for the greater good by helping kids solve
problems faced in their schools.
</p>
</div>
</div>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init();
</script>
</body>
</html>