forked from SohamJuneja/OpenSourceDSC
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
58 lines (53 loc) · 1.49 KB
/
about.html
File metadata and controls
58 lines (53 loc) · 1.49 KB
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
<!DOCTYPE html>
<html>
<head>
<title>About Us</title>
</head>
<body>
<header>
</header>
<div class="about-section">
<h4>About Our Club</h4>
<h2>Our Story</h2>
<p>Founded in 2020, the Tech Club has been a hub for technology enthusiasts on campus.</p>
<p>We focus on open source development, coding workshops, and community building. Our members have gone on to work at top tech companies and contribute to major open source projects.</p>
</div>
<div class="mission">
<p>To cultivate a community of innovators who use technology to solve real-world problems</p>
</div>
<div class="timeline">
<h2>Our Journey</h2>
<div>
<div>2020</div>
<div>Club founded with just 5 members</div>
</div>
<div>
<div>2021</div>
<div>First hackathon organized</div>
</div>
<div>
<div>2022</div>
<div>Expanded to 50+ active members</div>
</div>
<div>
<div>2023</div>
<div>Started open source contribution workshops</div>
</div>
</div>
<div class="team-preview">
<h2>Leadership Team</h2>
<table>
<tr>
<td>Jane Doe</td>
<td>President</td>
</tr>
<tr>
<td>John Smith</td>
<td>Vice President</td>
</tr>
</table>
</div>
<footer>
</footer>
</body>
</html>