-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathabout.html
134 lines (130 loc) · 4.9 KB
/
about.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NST-SDC</title>
<link rel="stylesheet" href="/about.css">
</head>
<body>
<div class="body">
<!-------------header------------>
<header>
<h1>NST-SDC</h1>
<h3>Code, Create, Connect!</h3>
<div id="date-time"></div>
</header>
<hr>
<div class="nav">
<div class="nav-item">
<a href="/home.html">Home</a>
</div>
<div class="nav-item">
<a href="/about.html">About</a>
</div>
<div class="nav-item">
<a href="/events.html">Events</a>
</div>
<div class="nav-item">
<a href="/gallery.html">Gallery</a>
</div>
<div class="nav-item">
<a href="/contact.html">Contact</a>
</div>
</div>
<!-------------/header/------------>
<hr>
<!-- Aim And Motive -->
<div class="aim"><u><h4>Aims & Motives</h4></u>
<p><b>•Encourage Collaboration:</b>Promote teamwork through group projects and collaborative coding sessions.
</p>
<p><b>•Enhance Skills:</b>Organize workshops and training sessions to improve technical skills and knowledge in software development.
</p>
<p><b>•Create Projects:</b>Develop real-world applications and projects that can be showcased in portfolios or competitions.
</p>
<p><b>•Networking Opportunities: </b>Facilitate connections with industry professionals and alumni to enhance career prospects.
</p>
<p><b>•Host Events:</b>Organize hackathons, coding competitions, and guest speaker events to engage members and the wider community.
</p>
<p><b>•Promote Innovation:</b> Encourage members to explore new technologies and creative solutions to problems.
</p>
</div>
<!--/Aim And Motive -->
<hr>
<!-- Team -->
<div class="team">
<h4>Meet Our Team</h4>
<div class="team-member">
<div class="mentors">
<img src="/photos/profile.jpeg" alt="Mentor Profile 1">
<img src="/photos/profile.jpeg" alt="Mentor Profile 2">
</div>
</div>
<div class="students">
<img src="/photos/profile.jpg" alt="Student Profile 1">
<img src="/photos/profile.jpg" alt="Student Profile 2">
<img src="/photos/profile.jpg" alt="Student Profile 3">
<img src="/photos/profile.jpg" alt="Student Profile 4">
<img src="/photos/profile.jpg" alt="Student Profile 5">
<img src="/photos/profile.jpg" alt="Student Profile 6">
<img src="/photos/profile.jpg" alt="Student Profile 7">
<img src="/photos/profile.jpg" alt="Student Profile 8">
<img src="/photos/profile.jpg" alt="Student Profile 9">
<img src="/photos/profile.jpg" alt="Student Profile 10">
<img src="/photos/profile.jpg" alt="Student Profile 11">
<img src="/photos/profile.jpg" alt="Student Profile 12">
<img src="/photos/profile.jpg" alt="Student Profile 13">
<img src="/photos/profile.jpg" alt="Student Profile 14">
<img src="/photos/profile.jpg" alt="Student Profile 15">
<img src="/photos/profile.jpg" alt="Student Profile 16">
<img src="/photos/profile.jpg" alt="Student Profile 17">
<img src="/photos/profile.jpg" alt="Student Profile 18">
<img src="/photos/profile.jpg" alt="Student Profile 19">
<img src="/photos/profile.jpg" alt="Student Profile 20">
<img src="/photos/profile.jpg" alt="Student Profile 21">
<img src="/photos/profile.jpg" alt="Student Profile 22">
<img src="/photos/profile.jpg" alt="Student Profile 23">
<img src="/photos/profile.jpg" alt="Student Profile 24">
<img src="/photos/profile.jpg" alt="Student Profile 25">
<img src="/photos/profile.jpg" alt="Student Profile 26">
<img src="/photos/profile.jpg" alt="Student Profile 27">
<img src="/photos/profile.jpg" alt="Student Profile 28">
</div>
<!-- footer -->
<div class="footer">
<footer>
<div class="footer-content">
<p>© 2024 NST-SDC: All rights reserved</p>
<div class="social-icons">
<img src="/photos/github.png" alt="GitHub" class="img">
<img src="/photos/instagram.png" alt="Instagram" class="img">
<img src="/photos/discord.png" alt="Discord" class="img">
<img src="/photos/youtube.png" alt="YouTube" class="img">
</div>
</div>
</footer>
</div>
<!-- /footer -->
</div>
</body>
<script>
// Function to update date and time
function updateDateTime() {
const now = new Date();
const options = {
weekday: 'long',
year: 'numeric',
month: 'long',
day: 'numeric',
hour: '2-digit',
minute: '2-digit',
second: '2-digit'
};
document.getElementById('date-time').textContent = now.toLocaleDateString('en-US', options);
}
// Initial call to set the date and time
updateDateTime();
// Update the time every second
setInterval(updateDateTime, 1000);
</script>
</html>