-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathc.html
345 lines (312 loc) · 12.8 KB
/
c.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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Estin SRC - Student Resource Center</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" rel="stylesheet">
<style>
body {
background-color: #121212;
color: #e0e0e0;
font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
}
.navbar {
background-color: #1e1e1e;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
transition: all 0.3s ease;
}
.navbar-brand {
color: #bb86fc;
font-weight: bold;
font-size: 1.5rem;
}
.nav-link {
color: #e0e0e0;
position: relative;
transition: color 0.3s ease;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -5px;
left: 0;
background-color: #bb86fc;
transition: width 0.3s ease;
}
.nav-link:hover {
color: #bb86fc;
}
.nav-link:hover::after {
width: 100%;
}
.hero-section {
background-color: #1f1b24;
color: #bb86fc;
padding: 120px 0;
text-align: center;
position: relative;
overflow: hidden;
}
.hero-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: radial-gradient(circle at center, rgba(187,134,252,0.1) 0%, transparent 70%);
pointer-events: none;
}
.hero-section h1 {
font-size: 3.5rem;
font-weight: 700;
margin-bottom: 20px;
position: relative;
z-index: 1;
}
.card {
background-color: #1e1e1e;
border: none;
border-radius: 12px;
transition: all 0.3s ease;
margin-bottom: 24px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.card:hover {
transform: translateY(-10px);
box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.card-img-top {
border-top-left-radius: 12px;
border-top-right-radius: 12px;
height: 220px;
object-fit: cover;
}
.card-title {
color: #bb86fc;
font-weight: 600;
}
.btn-purple {
background-color: #bb86fc;
color: #1e1e1e;
border: none;
transition: all 0.3s ease;
}
.btn-purple:hover {
background-color: #9f6ffb;
transform: translateY(-2px);
box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}
.section-header {
text-align: center;
margin-bottom: 50px;
position: relative;
}
.section-header h2 {
color: #bb86fc;
display: inline-block;
position: relative;
padding: 0 20px;
}
.section-header h2::before,
.section-header h2::after {
content: '';
position: absolute;
top: 50%;
width: 50px;
height: 2px;
background-color: #bb86fc;
}
.section-header h2::before {
left: -60px;
}
.section-header h2::after {
right: -60px;
}
.discord-card {
background-color: #5865F2;
color: white;
}
.discord-card .card-title {
color: white;
}
footer {
background-color: #1e1e1e;
padding: 20px 0;
text-align: center;
}
.alert {
background-color: rgba(187,134,252,0.2);
border: none;
color: #bb86fc;
}
section {
padding: 80px 0;
}
@media (max-width: 768px) {
.hero-section h1 {
font-size: 2.5rem;
}
}
</style>
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg fixed-top">
<div class="container">
<a class="navbar-brand" href="#">Estin SRC</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item"><a class="nav-link" href="#websites">Websites</a></li>
<li class="nav-item"><a class="nav-link" href="#youtube-channels">YouTube Courses</a></li>
<li class="nav-item"><a class="nav-link" href="#communities">Communities</a></li>
</ul>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="hero-section">
<div class="container">
<img src="logo.png" alt="Estin SRC Logo" class="mb-4" style="max-width: 150px;">
<h1>Welcome to Estin SRC</h1>
<p class="lead">Your ultimate resource center for CS students at Estin</p>
<a href="#websites" class="btn btn-purple btn-lg mt-4">Get Started</a>
</div>
</section>
<!-- Notification -->
<div class="alert alert-dismissible fade show text-center" role="alert">
<strong>📘 Sharing is caring!</strong> Share a book NOW!
<a href="https://forms.gle/JiaYW6REqsS2nndQ9" class="text-white">Click here</a>
<button type="button" class="btn-close btn-close-white" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
<!-- Websites Section -->
<section id="websites">
<div class="container">
<div class="section-header">
<h2>Websites</h2>
</div>
<div class="row">
<div class="col-md-4">
<div class="card">
<img src="imgs/estinBib.PNG" class="card-img-top" alt="Estin Bib">
<div class="card-body">
<h5 class="card-title"><i class="fas fa-globe me-2"></i>Estin Bib</h5>
<p class="card-text">Comprehensive library of ESTIN courses, TDs, EMDs, and corrections.</p>
<a href="https://the-estin-bib.vercel.app/" class="btn btn-purple">Visit Website</a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card">
<img src="imgs/estins.PNG" class="card-img-top" alt="ESTIN Repository">
<div class="card-body">
<h5 class="card-title"><i class="fas fa-globe me-2"></i>ESTIN Repository</h5>
<p class="card-text">Collection of subjects, exams, and courses for computer science students.</p>
<a href="https://estin-student.vercel.app/" class="btn btn-purple">Visit Website</a>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card">
<img src="imgs/tresorEsi.PNG" class="card-img-top" alt="Tresor ESI">
<div class="card-body">
<h5 class="card-title"><i class="fas fa-globe me-2"></i>Tresor ESI</h5>
<p class="card-text">Comprehensive platform for academic resources from ESI.</p>
<a href="https://tresor.cse.club/" class="btn btn-purple">Visit Website</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- YouTube Channels Section -->
<section id="youtube-channels">
<div class="container">
<div class="section-header">
<h2>YouTube Courses</h2>
</div>
<div class="row">
<div class="col-md-4 mb-4">
<div class="card">
<img src="https://img.freepik.com/free-vector/binary-code-netwrok-technology-concept-background_1017-13992.jpg" class="card-img-top" alt="Structure Machine Course">
<div class="card-body">
<h5 class="card-title">Structure Machine 1</h5>
<p class="card-text">Computer science course by Mahseur</p>
<a href="https://www.youtube.com/playlist?list=PL-b5Zp9H7qBgrtYJ3YEO0wFI3Ua243-nA" class="btn btn-purple">Watch Course</a>
</div>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="card">
<img src="https://i.pinimg.com/564x/53/61/38/536138480e98eb665117fc3a40fa6bb5.jpg" class="card-img-top" alt="Algorithms Course">
<div class="card-body">
<h5 class="card-title">Algorithmes</h5>
<p class="card-text">Algorithms course by Hassan El Bahi</p>
<a href="https://www.youtube.com/playlist?list=PLZpzLuUp9qXwrApSukhtvpi4U6l-INcTI" class="btn btn-purple">Watch Course</a>
</div>
</div>
</div>
<div class="col-md-4 mb-4">
<div class="card">
<img src="https://img.freepik.com/free-vector/tiny-students-with-huge-sign-pi-flat-vector-illustration-boy-girl-studying-math-algebra-school-college-holding-ruler-using-laptop-geometric-figures-background-education-concept_74855-23227.jpg" class="card-img-top" alt="Analysis Course">
<div class="card-body">
<h5 class="card-title">Analyse 1</h5>
<p class="card-text">Real numbers analysis by 15 Min Math Lr</p>
<a href="https://www.youtube.com/playlist?list=PLgKSr97JkHD5bolvStigFu3J5iA4DepKg" class="btn btn-purple">Watch Course</a>
</div>
</div>
</div>
</div>
<div class="text-center mt-4">
<a href="eslist/profile.html" class="btn btn-purple btn-lg">Explore More</a>
</div>
</div>
</section>
<!-- Communities Section -->
<section id="communities">
<div class="container">
<div class="section-header">
<h2>Communities</h2>
</div>
<div class="row">
<div class="col-md-6">
<div class="card discord-card">
<img src="imgs/prepaDiscord.png" class="card-img-top" alt="Prepa Hub Discord">
<div class="card-body">
<h5 class="card-title"><i class="fab fa-discord me-2"></i>Prepa Hub 🎓</h5>
<p class="card-text">Connect with students, find academic support, and collaborate on projects.</p>
<a href="https://discord.gg/yB8rSNetQJ" class="btn btn-purple">Join Community</a>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card discord-card">
<img src="imgs/DevAlgeria.PNG" class="card-img-top" alt="DevAlgeria Discord">
<div class="card-body">
<h5 class="card-title"><i class="fab fa-discord me-2"></i>DevAlgeria</h5>
<p class="card-text">A global community for developers of all levels, from beginners to professionals.</p>
<a href="https://discord.gg/mRwpAXMtnD" class="btn btn-purple">Join Community</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer>
<p>Made with ❤️ by <a href="https://github.com/Untitled-Master" style="color: #bb86fc;">Ahmed Bl</a></p>
<a href="https://visitcount.itsvg.in">
<img src="https://visitcount.itsvg.in/api?id=ESTINSRC&label=Number%20of%20visits&color=12&icon=5&pretty=false" alt="Visit Count"/>
</a>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>