forked from ietebitmesra/Hacktoberfest-23
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (54 loc) · 2.02 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>CollegeHUB || BIT Mesra</title>
<link href="styles.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header>
<a href="#">
<img src="./assets/img/Birla_Institute_of_Technology_Mesra.png" alt="BIT Mesra" id="logo" />
<h2>CollegeHUB</h2>
</a>
<nav>
<a href="#">Home</a>
<a href="#about">About</a>
<a href="#contact">Contact Us</a>
</nav>
</header>
<main>
<div id="fests">
<h1>FESTS</h1>
<div id="fests-container">
<div class="fests-card" id="pantheon">
<img src="./assets/img/Pantheon_img.jpeg" alt="Pantheon Image" />
<h3>PANTHEON</h3>
<p>The Biggest tech fest of East-India with exciting competitions and entertainment lined up on it's way.</p>
</div>
<div class="fests-card" id="bitotsav">
<img src="./assets/img/bitotsav_img.jpg" alt="Bitotsav Image" />
<h3>BITOTSAV</h3>
<p>The Flasgship Cultural Fest of BIT mesra which brings the outstanding of any student and makes them live their time of life!</p>
</div>
</div>
</div>
<div id="clubs">
<h1>CLUBS</h1>
<div id="clubs-container">
<a href="#" class="clubs-card">ACM</a>
<a href="./Clubs/IETE" class="clubs-card" id="iete">
<img src="./Clubs/IETE/assets/img/IETE.png" alt="IETE Logo" />
<h3>IETE</h3>
</a>
<a href="#" class="clubs-card">IET</a>
<a href="#" class="clubs-card">IEEE</a>
</div>
</div>
</main>
<footer class="bottom-container">
<p> Copyright © 2023 by IETE Students' Chapter, BIT Mesra | All Rights Reserved.</p>
</footer>
</body>
</html>