-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
73 lines (73 loc) · 3.18 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GDSC ICT University - DevFest & Hacktoberfest</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<img src="gdc logo.png" alt="GDSC Logo">
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#about">About</a></li>
<li><a href="#events">Events</a></li>
<li><a href="#news">News</a></li>
<li><a href="#team">Team</a></li>
</ul>
</nav>
</header>
<main>
<section id="home" class="banner">
<canvas id="dotsCanvas"></canvas>
<h5></h5>
<h1 class="left">Welcome To</h1>
<h1 class="left">GDG of ICT University</h1>
<h1 class="right">DevFest & Hacktoberfest</h1>
<h4>Join us in celebrating technology, innovation, and open-source!</h4>
<button class="cta-button">Get Involved</button>
</section>
<section id="about" class="content-section">
<h2>About Us</h2>
<p>We are the Google Developer Student Club at ICT University, dedicated to fostering a community of tech enthusiasts and innovators. Our mission is to bridge the gap between theory and practice in technology education.</p>
</section>
<section id="events" class="content-section">
<h2>Upcoming Events</h2>
<ul>
<li>DevFest 2024: A celebration of technology and innovation</li>
<li>Hacktoberfest: Contribute to open-source and earn rewards</li>
</ul>
<a href="#" class="cta-button">Learn More</a>
</section>
<section id="news" class="content-section">
<h2>Latest News</h2>
<ul>
<li><a href="https://developers.google.com/community/gdsc" target="_blank">Learn more about GDSC</a></li>
<li><a href="https://hacktoberfest.com/" target="_blank">Hacktoberfest Official Site</a></li>
<li><a href="https://github.com/" target="_blank">Explore GitHub</a></li>
</ul>
</section>
<section id="team" class="content-section">
<h2>Our Team</h2>
<p>We're grateful for the hard work and dedication of our GDSC team members. Their efforts make our events and initiatives possible.</p>
<div class="team-grid">
<div class="team-member">
<img src="/api/placeholder/150/150" alt="Team Member 1">
<h3>Nde Dilan/h3>
<p>GDSC Lead</p>
</div>
<div class="team-member">
<img src="/api/placeholder/150/150" alt="Team Member 2">
<h3>Jane Smith</h3>
<p>Technical Lead</p>
</div>
<!-- Add more team members as needed -->
</div>
</section>
</main>
<script src="app.js"></script>
</body>
</html>