-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathachivements.html
126 lines (119 loc) · 5.21 KB
/
achivements.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
<!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="/event.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 class="nav-item">
<a href="/achievements.html">Achievements</a>
</div>
</div>
<!-------------/header/------------>
<hr>
<!-- latest achievements -->
<h2 style="text-align: center; font-size: 30px;"> Latest Achievements</h2>
<div class="lateachieve-item" style="display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 13px;">
<div style="width: 300px;">
<img src="/photos/event1.jpeg" style="width: 300px; height: 300px; border-radius: 15px;">
</div>
<div style="flex-grow: 1; padding-left: 20px;">
<h3>Project Name</h3>
<p style="font-size: 22px; font-style: italic;">This is the paragraph describing the project. You can provide more details about the project here, including information about the team, tasks, or outcomes. The paragraph will take up the remaining space on the right of the image and expand to fit the available width, ensuring a flexible and responsive layout.</p>
</div>
</div>
<div class="lateachieve-item" style="display: flex; align-items: flex-start; justify-content: space-between;margin-bottom: 13px;">
<div style="width: 300px;">
<img src="/photos/event2.jpeg" style="width: 300px; height: 300px; border-radius: 15px;">
</div>
<div style="flex-grow: 1; padding-left: 20px;">
<h3>Project Name</h3>
<p style="font-size: 22px; font-style: italic;">This is the paragraph describing the event. You can provide more details about the event here, including information about the speakers, activities, or outcomes. The paragraph will take up the remaining space on the right of the image and expand to fit the available width, ensuring a flexible and responsive layout.</p>
</div>
</div>
<!--/latest achievements -->
<!--other achievements -->
<h2 style="text-align: center;font-size: 30px"> Other Achievements</h2>
<div class="otherachieve-item" style="display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 13px;">
<div style="width: 300px;">
<img src="/photos/event1.jpeg" style="width: 300px; height: 300px; border-radius: 15px;">
</div>
<div style="flex-grow: 1; padding-left: 20px;">
<h3>Project Name</h3>
<p style="font-size: 22px; font-style: italic;">This is the paragraph describing the event. You can provide more details about the event here, including information about the speakers, activities, or outcomes. The paragraph will take up the remaining space on the right of the image and expand to fit the available width, ensuring a flexible and responsive layout.</p>
</div>
</div>
<div class="lateachieve-item" style="display: flex; align-items: flex-start; justify-content: space-between;margin-bottom: 13px;">
<div style="width: 300px;">
<img src="/photos/event3.jpeg" style="width: 300px; height: 300px; border-radius: 15px;">
</div>
<div style="flex-grow: 1; padding-left: 20px;">
<h3>Project Name</h3>
<p style="font-size: 22px; font-style: italic;">This is the paragraph describing the event. You can provide more details about the event here, including information about the speakers, activities, or outcomes. The paragraph will take up the remaining space on the right of the image and expand to fit the available width, ensuring a flexible and responsive layout.</p>
</div>
</div>
<!--/other achievements -->
<!--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>