-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
684 lines (557 loc) Β· 15.7 KB
/
Copy pathindex.html
File metadata and controls
684 lines (557 loc) Β· 15.7 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
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
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
<!DOCTYPE html>
<html>
<head>
<title>CTP @xiaowuc2</title>
<link rel="icon" href="cat.png" type="image/x-icon">
<style>
body {
font-family: 'Courier New', Courier, monospace;
margin: 0;
padding: 20px;
/* background-color: #FFFFE0; */
background: linear-gradient(-45deg, #ffffff, #fffeae, #b2ebff, #e0ffb5);
background-size: 400% 400%;
animation: gradient 15s ease infinite;
height: 100%;
}
/* rgb - start */
@keyframes gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.d-flex {
display: flex;
}
.flex-column {
flex-direction: column;
}
.justify-content-center {
justify-content: center;
}
.align-items-center {
align-items: center;
}
.fw-light {
font-weight: lighter;
}
.text-white {
color: white;
}
.m-0 {
margin: 0;
}
.btn-group {
display: flex;
}
.my-5 {
margin-top: 1.25rem;
margin-bottom: 1.25rem;
}
.btn {
display: inline-block;
font-weight: 400;
text-align: center;
white-space: nowrap;
vertical-align: middle;
user-select: none;
border: 1px solid transparent;
padding: 0.375rem 0.75rem;
font-size: 1rem;
line-height: 1.5;
border-radius: 0.25rem;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
color: #fff;
background-color: transparent;
border-color: #fff;
}
.btn-outline-light {
color: #fff;
background-color: transparent;
background-image: none;
border-color: #fff;
}
.btn-outline-light:hover {
color: #212529;
background-color: #fff;
border-color: #fff;
}
.btn-outline-light:focus,
.btn-outline-light.focus {
box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.5);
}
.btn-outline-light.disabled,
.btn-outline-light:disabled {
color: #fff;
background-color: transparent;
}
.btn-outline-light:not(:disabled):not(.disabled):active,
.btn-outline-light:not(:disabled):not(.disabled).active,
.show>.btn-outline-light.dropdown-toggle {
color: #212529;
background-color: #fff;
border-color: #fff;
}
.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show>.btn-outline-light.dropdown-toggle:focus {
box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.5);
}
.text-decoration-none {
text-decoration: none;
}
a {
color: #212534;
text-decoration: none;
font-family: sans-serif;
font-weight: bold;
margin-top: 2rem;
}
/* rgb - end */
h1 {
text-align: center;
}
.abc{
text-align: center;
}
.bb{
margin: 0 20px;
text-align: center;
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.link-item {
margin: 0 10px;
}
.no-underline {
text-decoration: none;
color: blue;
transition: color 0.9s ease;
}
.no-underline:hover {
text-decoration: none;
color: black;
}
/* links */
.link {
text-decoration: none;
color: rgb(46, 60, 186);
position: relative;
transition: color 0.3s ease;
margin-right: 30px;
font-weight: bold;
}
.link:hover {
color: dimgray;
}
.link::before {
content: "";
position: absolute;
width: 100%;
height: 2px;
bottom: -2px;
left: 0;
background-color: rgb(54, 54, 54);
visibility: hidden;
transform: scaleX(0);
transition: all 0.3s ease-in-out;
}
.link:hover::before {
visibility: visible;
transform: scaleX(1);
}
/* */
.course-container {
max-width: 80%;
margin: 0 auto;
}
.course-item {
max-width: 70%;
margin: 0 auto;
margin-bottom: 20px;
padding: 10px;
background-color: rgba(0, 0, 0, 0.2);
border-radius: 5px;
background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
backdrop-filter: blur(0.75rem);
-webkit-backdrop-filter: blur(0.75rem);
border-radius: 1.25rem;
border: 2px solid rgba(0, 0, 0, 0.18);
}
/* */
/* Example CSS for customizing the appearance */
summary {
cursor: pointer;
font-weight: bold;
appearance: none;
-moz-appearance: none;
-webkit-appearance: none;
background-image: none;
}
details p {
background-color: #f7f7f7;
padding: 10px;
}
/* */
/* random */
#project-container {
width: auto;
height: 20px;
border: 0px solid #ccc;
overflow: hidden;
position: relative;
text-align: center;
}
#project-container a {
text-decoration: none;
color: rgb(221, 139, 7);
display: inline-block;
font-weight: bold;
opacity: 0;
transition: opacity 0.5s ease-in-out;
}
/* */
/* form - start */
.container {
max-width: 55%;
margin: 20px auto;
padding: 20px;
background-color: #fff;
margin-bottom: 20px;
padding: 10px;
background-color: #f5f5f5;
border-radius: 5px;
background: linear-gradient(
135deg,
rgba(255, 255, 255, 0.1),
rgba(255, 255, 255, 0)
);
backdrop-filter: blur(0.75rem);
/* Purely for Safari */
-webkit-backdrop-filter: blur(0.75rem);
border-radius: 1.25rem;
border: 1px solid rgba(255, 255, 255, 0.18);
box-shadow: 0 0.5rem 2rem 0 rgba(0, 0, 0, 0.37);
}
h2 {
font-size: 20px;
text-align: center;
margin-bottom: 20px;
}
.form-group {
margin-bottom: 20px;
text-align: center;
margin-bottom: 20px;
}
label {
display: block;
margin-bottom: 5px;
font-weight: bold;
text-align: left;
}
input[type="text"],
textarea {
width: 90%;
padding: 10px;
border: none;
border-radius: 5px;
background-color: #f7f7f7;
box-sizing: border-box;
}
input[type="submit"] {
width: 100%;
padding: 10px;
border: none;
background-color: #000000;
color: #fff;
font-weight: bold;
cursor: pointer;
border-radius:6px;
}
input[type="submit"]:hover {
background-color: #5d9739;
}
/* form - end */
/* corner - start */
.corner-image {
position: fixed;
top: 10px;
right: 10px;
}
/* corner - end */
/* heading image - start */
.heading-image {
text-align: center;
margin-bottom: 5px;
}
.heading-image img {
max-width: 200px;
height: auto;
}
/* heading image - end */
/* footer - start */
.footer {
background-color: #f9f9f9;
text-align: center;
padding: 20px;
}
.footer a {
color: #555;
text-decoration: none;
margin: 0 10px;
}
.footer a:hover {
color: #000;
}
.footer i {
font-size: 20px;
margin-right: 5px;
}
/* footer - end */
/* notification - start */
#page-container {
width: 100%;
height: 100%;
}
#dialog-container {
position: fixed;
top: 20px;
right: 20px;
width: 350px;
min-height: 300px;
margin-left: auto;
margin-right: auto;
opacity: 0;
pointer-events: none;
transition: opacity 0.5s ease;
}
.dialog-box {
position: relative;
min-height: 80px;
max-height: 180px;
border-radius: 10px;
margin-bottom: 8px;
overflow: hidden;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
background-color: rgba(255, 255, 255, 0.8);
}
.dialog-box .header {
height: 25px;
position: relative;
color: black;
}
.left {
float: left;
text-align: left;
width: content-max;
padding: 3px 0 0 10px;
}
.right {
float: right;
text-align: right;
width: content-max;
padding: 3px 10px 0 0;
}
.contents {
z-index: 100;
position: inherit;
font-size: 0.8em;
}
.main-content {
padding: 8px 20px 10px 10px;
height: content-max;
}
#footer-text {
font-size: 0.8em;
position: absolute;
bottom: 8px;
right: 8px;
}
/* notification - end */
</style>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="heading-image">
<img src="8.png" alt="Heading Image">
</div>
<!-- <img src="cac.png" class="corner-image" width="70" height="70" alt="Corner Image"> -->
<div class="course-container">
<!-- <h1>Computational Thinking : Python</h1> -->
<div class="abc">Rohit Prasan Manadal <a href="https://github.com/xiaowuc2" target="_blank" class="no-underline">@xiaowuc2</a></div>
<br><br>
This course seeks to offer students an awareness of the role computing may play in problem solving and to let students, regardless of major, feel justified in their ability to develop simple programs that enable them to accomplish their goals. We'll start with the basics of python and dive deep into core concepts of python along with solving LeetCode problems. This course focuses on solving your doubts and evoke rational questions. Feel free to shoot me with your all creative questions pertinent to this course at the discussion panel.
<br>
<br>
<details>
<summary>About @xiaowuc2 </summary>
<p>Rohit Prasan Mandal is a Machine Learning Researcher, an πππ -er, and a Section Leader in ππππ§ππ¨π«π Code in Place 2023, who has taught over 10,000 students and working professionals to succeed in coding interviews and land their dream jobs. Their research on deep learning has been recognized through publications in esteemed journals such as π¦π½πΏπΆπ»π΄π²πΏ and π’'π₯π²πΆπΉπΉπ. With a year of teaching experience, they are dedicated to helping students by solving their doubts and encouraging them to ask questions.
</p>
</details>
<br><br>
<div class="bb">
<a class="link-item" href="#" class="link">Notes</a>
<a class="link-item" href="#" class="link">Assignment</a>
<a class="link-item" href="#" class="link">Projects</a>
<a class="link-item" href="#" class="link">Shedule</a>
<a class="link-item" href="#" class="link">YouTube</a>
</div>
<br><br><br>
<div class="course-item">
<h2>Python Objects</h2>
<ul>
<li>Variable</li>
<li>Operator</li>
<li>Data Types</li>
<li>More on String</li>
<li>Compound Data Types</li>
<li>More on List</li>
<li>More on Tuple</li>
<li>More on Dictionary</li>
<li>More on Set</li>
<li>Useful Function</li>
</ul>
</div>
<div class="course-item">
<h2>Conditional Statements</h2>
<ul>
<li>if</li>
<li>if else</li>
<li>if elif else</li>
<li>Applications</li>
</ul>
</div>
<div class="course-item">
<h2>File Handling</h2>
<ul>
<li>Reading and writing files</li>
<li>Working with CSV and JSON files</li>
</ul>
</div>
<div class="course-item">
<h2>Object-Oriented Programming</h2>
<ul>
<li>Classes and objects</li>
<li>Nested Classes</li>
<li>Access Modifiers 1</li>
<li>Four Pillars of OOP</li>
<li>Inheritance</li>
<li>Polymorphism</li>
<li>Encapsulation</li>
<li>Abstraction</li>
<li>Access Modifiers 1</li>
<li>Applications</li>
</ul>
</div>
<!-- Add more course sections as needed -->
</div>
<div id="project-container">
Exciting Projects :
<a href="#" id="project-link"></a>
</div>
<script>
var projectLinks = [
{ title: "Collatz Conjecture", url: "https://example.com/project1" },
{ title: "Benford's Law", url: "https://example.com/project2" },
{ title: "Stock Price Analysis", url: "https://example.com/project3" },
{ title: "CSPRNG", url: "https://example.com/project4" },
{ title: "Time Complexity Visualization", url: "https://example.com/project5" }
];
function getRandomLink() {
var randomIndex = Math.floor(Math.random() * projectLinks.length);
return projectLinks[randomIndex];
}
function fadeInLink() {
var projectLink = document.getElementById("project-link");
var randomLink = getRandomLink();
projectLink.textContent = randomLink.title;
projectLink.href = randomLink.url;
projectLink.style.opacity = "1";
setTimeout(function() {
fadeOutLink();
}, 2000);
}
function fadeOutLink() {
var projectLink = document.getElementById("project-link");
projectLink.style.opacity = "0";
setTimeout(function() {
fadeInLink();
}, 500);
}
fadeInLink();
</script>
<div class="container">
<h2>For Pricing, Schedules & Enquiry :</h2>
<form action="https://formspree.io/f/xgebbpel" method="POST">
<div class="form-group">
<label for="name"></label>
<input type="text" id="name" name="name" placeholder="Your Name" required>
</div>
<div class="form-group">
<label for="email"></label>
<input type="text" id="email" name="_replyto" placeholder="Your Email" required>
</div>
<div class="form-group">
<label for="message"></label>
<textarea id="message" name="message" rows="4" placeholder="Your Message" required></textarea>
</div>
<div class="form-group">
<input type="submit" value="Send Message">
</div>
</form>
</div>
<style>
footer {
text-align: center;
}
</style>
<br><br>
<footer>
<p>© 2023 @qxresearch. All rights reserved.</p>
</footer>
<!-- Include the necessary Font Awesome CDN link -->
<div id="page-container">
<div id="dialog-container">
<div class="dialog-box">
<div class="background-blur"></div>
<div class="header">
<div class="background-blur"></div>
<div class="contents">
<div class="left">
<img src="cat.png" width="20" alt="iMessage Icon">
</div>
<div class="right">
Now
</div>
</div>
</div>
<div class="contents main-content">
<strong>xiaowuc2</strong><br>
Hope to see you soon!
</div>
</div>
</div>
</div>
<script>
// Function to show the notification after 2 seconds
setTimeout(function() {
var dialogContainer = document.getElementById("dialog-container");
dialogContainer.style.opacity = "1";
dialogContainer.style.pointerEvents = "auto";
}, 3000);
// Function to fade out the notification after 2 seconds
setTimeout(function() {
var dialogContainer = document.getElementById("dialog-container");
dialogContainer.style.opacity = "0";
dialogContainer.style.pointerEvents = "none";
}, 8000);
</script>
</body>
</html>