-
Notifications
You must be signed in to change notification settings - Fork 9
/
events.html
109 lines (102 loc) · 4.7 KB
/
events.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./css/style.css" />
<link rel="stylesheet" href="./css/events.css" />
<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=Poppins:wght@400;600;700&display=swap" rel="stylesheet" />
</head>
<!-- end of header -->
<body>
<header>
<div id="event-top" class="banner">
<div class="container">
<img src="Assets/homePage/logo.webp" alt="" class="logo" />
<h1 class="banner-title">Events</h1>
<p>an interesting out look on math</p>
</div>
</header>
<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="#event-top" 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>
<section class="events-container">
<div class="event event1">
<div class="event-title"><span>1.Face Off</span></div>
<div class="event-details">
<img src="Assets/eventsPage/faceOff.webp" class="event-image" />
<div class="event-description">
<p>
Team Shunya is super excited to inform you that we are going to be
hosting our very first event in the month of April. But before
that what is even better is that we are organising a very fun
event for all PES RR and EC Campus students on 18th March. Make
sure you attend the event to stand a chance to win exciting prizes
and get to know more about the event! In case of any queries, feel
free to reach out to us.
</p>
<button>
<a href="https://www.instagram.com/shunya_pes/?hl=en">Know more</a>
</button>
</div>
</div>
</div>
<div class="event event2">
<div class="event-title"><span>2.Arithemania</span></div>
<div class="event-details">
<img src="Assets/eventsPage/arithmania.webp" class="event-image" />
<div class="event-description">
<p>
Team Shunya is super excited to inform you that we are going to be
hosting our very first event in the month of April. But before
that what is even better is that we are organising a very fun
event for all PES RR and EC Campus students on 18th March. Make
sure you attend the event to stand a chance to win exciting prizes
and get to know more about the event! In case of any queries, feel
free to reach out to us.
</p>
<button>
<a href="https://www.instagram.com/shunya_pes/?hl=en">Know more</a>
</button>
</div>
</div>
</div>
</section>
</body>
<footer>
<img class="footer-logo1" data-aos="fade-right" src="Assets\homePage\PES_LogoWhite.webp" alt="" class="logo" />
<div class="middle-container" data-aos="fade-up">
<div class="footer-links">
<a href="#event_top" class="footerlink">Blogs</a>
<a href="blog.html" class="footerlink">Events</a>
<a href="./index.html#contact-section" class="footerlink">Contact</a>
<a href="./outreach.html" class="footerlink">Outreach</a>
</div>
<div class="footer-social">
<a aria-label="social-link" href="https://www.instagram.com/shunya_pes/"><i
class="footer-icon fa-brands fa-instagram"></i></a>
<a aria-label="social-link" href="https://discord.gg/JjshWgbR"><i
class="footer-icon fa-brands fa-discord"></i></a>
<a aria-label="social-link" href="mailto:[email protected]"><i
class="footer-icon fa-solid fa-envelope"></i></a>
<a aria-label="social-link" href="https://www.linkedin.com/company/shunya-pes/"><i
class="footer-icon fa-brands fa-linkedin"></i></a>
</div>
<div class="footer-text">Shunya 2022 ● All rights reserved<br>Made with ❣️ by Shunya Web Dev Team</div>
</div>
<img class="footer-logo2" data-aos="fade-left" src="Assets\homePage\logo_white.webp" alt="" class="logo" />
</footer>
<script src="https://cdn.rawgit.com/michalsnik/aos/2.1.1/dist/aos.js"></script>
<script async src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://kit.fontawesome.com/613f9f2474.js" crossorigin="anonymous"></script>
<script src="js/events.js"></script>
<script src="js/main.js"></script>
</html>