-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclass11arts.html
632 lines (551 loc) · 23 KB
/
class11arts.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
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rosary Digital | Class 11 Arts Studio</title>
<link rel="icon" type="image/x-icon" href="/images/rosdigt.png">
<!-- Bootstrap CSS -->
<link href="https://stackpath.bootstrapcdn.com/bootstrap/5.3.0/css/bootstrap.min.css" rel="stylesheet">
<!-- Bootstrap Implementation -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@400;600&display=swap" rel="stylesheet">
<style>
body {
background: linear-gradient(135deg, #E0F7FF 0%, #ffffff 50%, #E0F7FF 100%);
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
min-height: 100vh;
color: #333;
}
.bg-gradient {
background: linear-gradient(135deg, #e0f7fa 0%, #80deea 100%);
min-height: 100vh;
padding-top: 20px;
}
/* Navbar Styling */
.navbar {
background: transparent !important;
border: none;
margin-top: 40px;
}
@media (max-width: 768px) {
.navbar {
margin-top: 20px;
}
.navbar-toggler-icon{
margin-right: 20px;
}
}
.navbar-brand img {
max-height: 50px;
height: auto;
width: auto;
margin-left: 60px; /* Default margin */
}
/* Adjusting the navbar-brand margin for smaller screens */
@media (max-width: 768px) {
.navbar-brand img {
margin-left: 30px; /* Reduced margin for tablets and small devices */
max-height: 35px; /* Responsive size for smaller screens */
}
.navbar-toggler-icon{
margin-right: 20px;
}
@media (max-width: 480px) {
.navbar-brand img {
margin-left: 15px; /* Further reduced margin for mobile phones */
max-height: 30px; /* Responsive size for mobile screens */
}
.roadmap-section h6{
font-weight: 600;
color: #7A52FF;
font-size: 12px;
}
}
}
.nav-link {
margin-right: 60px;
margin-top: 14px;
color: #333 !important;
font-family: 'Poppins', sans-serif;
}
.nav-link:hover {
color: #666 !important;
}
.navbar-toggler {
border: none;
}
.navbar-toggler-icon {
filter: invert(0);
}
.container-fluid {
max-width: 1200px;
}
.card {
background-color: #ffffff;
border: none;
border-radius: 12px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.card-body {
padding: 20px;
}
.card-title {
font-size: 1.5rem;
font-weight: 600;
}
.card-text {
font-size: 1rem;
}
.badge {
font-size: 0.85rem;
padding: 5px 10px;
border-radius: 5px;
}
.btn-link {
font-size: 1rem;
text-decoration: none;
color: #007bff;
}
.btn-primary {
font-size: 1rem;
background-color: #007bff;
border-color: #007bff;
}
.btn-primary:hover {
background-color: #0056b3;
border-color: #0056b3;
}
.img-fluid {
max-width: 170px;
height: auto;
}
.sidebar {
background-color: transparent;
padding: 20px;
border-radius: 12px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.list-group-item {
background: linear-gradient(135deg, #7a7ad2, #5a5ae0);
color: #ffffff;
border: none;
border-radius: 8px;
margin-bottom: 10px;
font-weight: 600;
text-align: center;
}
.form-control {
border-radius: 8px;
padding: 15px;
}
.form-control::placeholder {
font-size: 1rem;
color: #888;
}
.shadow-sm {
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}
.bbye a{
color: white;
}
/* Footer Styling */
footer {
background-color: #2a2a73;
color: #fff;
padding: 60px 30px;
text-align: center;
}
.cta-section {
background: linear-gradient(135deg, #3a3aa1, #5a5ae0);
padding: 50px 25px;
border-radius: 12px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
margin-bottom: 50px;
}
.cta-section h2 {
font-size: 2.4rem;
margin-bottom: 15px;
letter-spacing: 1px;
}
.cta-section p {
font-size: 1.3rem;
margin-bottom: 30px;
}
.cta-buttons {
display: flex;
justify-content: center;
gap: 30px;
}
.cta-button {
background-color: #ffffff;
color: #35357b;
padding: 15px 35px;
border-radius: 8px;
text-decoration: none;
font-weight: bold;
transition: background-color 0.3s ease, transform 0.3s ease;
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}
.cta-button:hover {
background-color: #eaeaea;
transform: translateY(-3px);
}
.cta-button.primary {
background-color: #5a5ae0;
color: #ffffff;
}
.cta-button.primary:hover {
background-color: #4545a8;
}
/* Footer Content */
.footer-content {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-top: 50px;
text-align: left;
}
.footer-column {
flex: 1;
min-width: 240px;
margin-bottom: 40px;
}
.footer-column h3 {
font-size: 1.5rem;
margin-bottom: 20px;
letter-spacing: 0.5px;
border-bottom: 2px solid #5a5ae0;
padding-bottom: 10px;
}
.footer-column ul {
list-style: none;
padding: 0;
}
.footer-column ul li {
margin-bottom: 12px;
}
.footer-column ul li a {
color: #fff;
text-decoration: none;
font-size: 1.1rem;
transition: color 0.3s ease;
}
.footer-column ul li a:hover {
color: #eaeaea;
text-decoration: underline;
}
/* Footer Bottom */
.footer-bottom {
margin-top: 30px;
border-top: 1px solid #4545a8;
padding-top: 20px;
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
}
.footer-bottom p {
font-size: 1rem;
}
.footer-bottom .heart {
color: #ff4b5c;
}
/* Responsive Design */
@media (max-width: 768px) {
.cta-buttons {
flex-direction: column;
}
.cta-buttons a {
margin-bottom: 15px;
width: 100%;
}
.footer-content {
flex-direction: column;
text-align: center;
}
.footer-column {
text-align: center;
margin-bottom: 20px;
}
.footer-column ul {
padding: 0;
}
}
#marq-container {
display: flex;
flex-direction: column;
align-items: center;
background-color: white;
border-radius: 30px;
padding: 10px 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
width: 100%;
max-width: 500px;
overflow: hidden;
}
#marq h6 {
background: linear-gradient(90deg, #1D87FF, #7A52FF, #4AB3FF);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-weight: 600;
margin-bottom: 10px;
text-align: center;
font-size: 1.2rem;
}
#marq-contributors {
display: inline-block;
white-space: nowrap;
animation: scrollText 10s linear infinite;
font-weight: 500;
font-size: 1rem;
color: black;
text-align: center;
}
@keyframes scrollText {
0% {
transform: translateX(100%);
}
100% {
transform: translateX(-100%);
}
}
@media (max-width: 768px) {
#marq h6 {
font-size: 1rem;
}
#marq-contributors {
font-size: 0.85rem;
}
}
@media (max-width: 480px) {
#marq h6 {
font-size: 0.9rem;
}
#marq-contributors {
font-size: 0.75rem;
}
}
</style>
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">
<img src="images/rosdigt.png" alt="CTGuide Logo" width="40" height="40">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link btn-learn-now" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link btn-learn-now" href="courses.html">Free Courses</a>
</li>
<li class="nav-item">
<a class="nav-link btn-learn-now" href="ebooks.html">E-Books</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://www.canva.com/design/DAGOLzK4bBg/p3tzvZD39eXGe__VanKtMQ/view?utm_content=DAGOLzK4bBg&utm_campaign=designshare&utm_medium=link&utm_source=editor">Roadmap</a>
</li>
<li class="nav-item">
<a class="nav-link btn-learn-now" href="learnstudio.html">Learn Studio</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Main Content -->
<div class="container-fluid bg-gradient py-5">
<div class="row">
<!-- Sidebar -->
<div class="col-lg-3 mb-4">
<div class="sidebar">
<div class="list-group">
<button class="list-group-item list-group-item-action">Class 11 • Arts Studio</button>
</div>
</div>
</div>
<!-- Search Results -->
<div class="col-lg-9">
<!--div class="mb-4">
<input type="text" class="form-control form-control-lg" placeholder="Search for a specific extracurricular (Ex: Robotics)">
</div-->
<!--p>SView Learning Resources Below</p-->
<div class="card mb-4 shadow-sm">
<div class="row g-0">
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title">English (11)</h5>
<p class="card-text">Explore a wide range of learning resources, detailed notes, and study materials tailored for the English subject in the Class 11 Arts stream. Access links to helpful websites, free courses, and additional references aligned with the State Board curriculum, designed to enhance your understanding of literature, language, and communication skills.</p>
<div class="d-flex flex-wrap gap-2">
<span class="badge bg-info text-dark">English Language</span>
<span class="badge bg-info text-dark">Communication</span>
<span class="badge bg-info text-dark">Grammar</span>
<span class="badge bg-info text-dark">Writting Skills</span>
</div>
</div>
</div>
<div class="col-md-4 d-flex flex-column align-items-center justify-content-center p-3">
<img src="sci_icons/1.png" alt="Key Club" class="img-fluid mb-3">
<a href="https://drive.google.com/drive/folders/1AB7-6ITj6eo9mBNQdlr9AkdKxnJgbBHY?usp=drive_link" class="btn btn-primary" >View Resource Drive</a>
</div>
</div>
</div>
<div class="card mb-4 shadow-sm">
<div class="row g-0">
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title">Economics (11)</h5>
<p class="card-text">Discover a comprehensive collection of learning resources, notes, and study guides specifically designed for Economics in the Class 11 Arts stream. Access educational links, free certification courses, and supplementary materials that align with the State Board syllabus, helping you build a strong foundation in economic concepts, theories, and applications.</p>
</p>
<div class="d-flex flex-wrap gap-2">
<span class="badge bg-info text-dark">Micro Economics</span>
<span class="badge bg-info text-dark">Macro Economics</span>
<span class="badge bg-info text-dark">Supply & Demand</span>
<span class="badge bg-info text-dark">Economic Growth</span>
</div>
</div>
</div>
<div class="col-md-4 d-flex flex-column align-items-center justify-content-center p-3">
<img src="commerce_icons/2.png" alt="MUN" class="img-fluid mb-3">
<a href="https://drive.google.com/drive/folders/1mJktPzVWaA3_jBfQV2wRUQfpxWQOZXiT?usp=drive_link" class="btn btn-primary">View Resource Drive</a>
</div>
</div>
</div>
<div class="card mb-4 shadow-sm">
<div class="row g-0">
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title">Sociology (11)</h5>
<p class="card-text">Explore comprehensive resources, notes, and study materials designed for Sociology students in the Arts stream. Access interactive lessons, case studies, and exam preparation content that covers social theories, institutions, and human interactions, all aligned with the State Board syllabus.</p>
<div class="d-flex flex-wrap gap-2">
<span class="badge bg-info text-dark">Social Theories</span>
<span class="badge bg-info text-dark">Human Interactions</span>
<span class="badge bg-info text-dark">Societal Structures</span>
<span class="badge bg-info text-dark">Case Studies</span>
</div>
</div>
</div>
<div class="col-md-4 d-flex flex-column align-items-center justify-content-center p-3">
<img src="arts_icons/2.png" alt="NHS" class="img-fluid mb-3">
<a href="https://drive.google.com/drive/folders/17_DEG0UrmjjUqYxJyATz7KZzOtgI75XQ?usp=drive_link" class="btn btn-primary">View Resource Drive</a>
</div>
</div>
</div>
<div class="card mb-4 shadow-sm">
<div class="row g-0">
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title">Psychology (11)</h5>
<p class="card-text">Access a curated collection of learning materials, research papers, and practical exercises tailored for Psychology students in the Arts stream. Gain insights into cognitive processes, behavior, and mental health through resources that align with the State Board syllabus and support exam preparation.</p>
<div class="d-flex flex-wrap gap-2">
<span class="badge bg-info text-dark">Cognitive Processes</span>
<span class="badge bg-info text-dark">Mental Health</span>
<span class="badge bg-info text-dark">Behavior Analysis</span>
<span class="badge bg-info text-dark">Practical Exercises</span>
</div>
</div>
</div>
<div class="col-md-4 d-flex flex-column align-items-center justify-content-center p-3">
<img src="arts_icons/3.png" alt="MUN" class="img-fluid mb-3">
<a href="https://drive.google.com/drive/folders/1mmvkKDire9XKrBYu2asFFzL3BwGZz5Am?usp=drive_link" class="btn btn-primary">View Resource Drive</a>
</div>
</div>
</div>
<div class="card mb-4 shadow-sm">
<div class="row g-0">
<div class="col-md-8">
<div class="card-body">
<h5 class="card-title">History (11)</h5>
<p class="card-text">Dive into detailed notes, timelines, and primary source documents curated for History students in the Arts stream. Access comprehensive resources that cover ancient, medieval, and modern history, all aligned with the State Board curriculum to help you master historical events and analysis.</p>
<div class="d-flex flex-wrap gap-2">
<span class="badge bg-info text-dark">Historical Events</span>
<span class="badge bg-info text-dark">Timelines</span>
<span class="badge bg-info text-dark">Primary Sources</span>
<span class="badge bg-info text-dark">Historical Analysis</span>
</div>
</div>
</div>
<div class="col-md-4 d-flex flex-column align-items-center justify-content-center p-3">
<img src="arts_icons/4.png" alt="NHS" class="img-fluid mb-3">
<a href="https://drive.google.com/drive/folders/1t4CfA4Z2E06kM761Wj9dY4e2BHl8ZxS9?usp=drive_link" class="btn btn-primary">View Resource Drive</a>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Bootstrap JS -->
<script src="https://stackpath.bootstrapcdn.com/bootstrap/5.3.0/js/bootstrap.bundle.min.js"></script>
<!-- Footer -->
<footer>
<div class="cta-section">
<h2>Ready to get started?</h2>
<p style="text-align: center;">Upskill yourself with Rosary Digital.</p>
<div class="cta-buttons">
<a href="learnstudio.html" class="cta-button">Explore Learn Studio</a>
<a href="roadmap.html" class="cta-button primary">View Roadmap</a>
</div>
</div>
<div class="footer-content">
<div class="footer-column">
<h3>Rosary Digital.</h3>
<p>Learning Studio & Roadmap</p>
</div>
<div class="footer-column">
<h3>LINKS</h3>
<ul>
<li><a href="index.html">Homepage</a></li>
<li><a href="#">Learn Studio</a></li>
<li><a href="#">Free Courses</a></li>
<li><a href="#">Free Ebooks</a></li>
<li><a href="#">Roadmap</a></li>
</ul>
</div>
<div class="footer-column">
<h3>RESOURCES</h3>
<ul>
<li><a href="#">Visit Goa Board</a></li><!--SHOW STUDENTS HOW TO SEARCH ON GOA BOARD-->
<li><a href="#">Rosary HSSC Official Website</a></li>
<li><a href="#">Whitepaper</a></li>
<li><a href="#">Project Contributors</a></li>
<li><a href="https://docs.google.com/document/d/1A-oofljqrB30u3YcVPHIsm6o7B6PNtRYsCZZKAufUu8/pub">RDL Opensource License</a></li>
</ul>
</div>
<div class="footer-column">
<h3>CONTACT US</h3>
<ul>
<li><a href="mailto:cephascardozo0207@gmail.com">cephascardozo0207@gmail.com</a></li>
<li><a href="https://www.linkedin.com/in/cephas-cardozo/?originalSubdomain=in">LinkedIn</a></li>
<li><a href="https://github.com/cephascard0207">GitHub</a></li>
</ul>
</div>
</div>
<center>
<div id="marq-container">
<div id="marq">
<h6>Project Contributors</h6>
</div>
<div id="marq-contributors">
Andy Fernandes • Cephas Cardozo • Afra Dcosta
</div>
</div>
</center>
<div class="footer-bottom">
<p>Custom Opensource Licensed • A Product of Rosary HSSC Navelim Goa</p>
<p>Developed with <span class="heart">❤️</span> by <a href="#" style="color: white; text-decoration: underline;">Cephas Cardozo</a></p>
</div>
</footer>
</body>
</html>