-
Notifications
You must be signed in to change notification settings - Fork 133
/
index.html
463 lines (437 loc) · 19.1 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-76QCJCGDB5"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-76QCJCGDB5');
</script>
<link rel="icon" href="./assets/images/favicon.png" type="image/x-icon">
<link rel="stylesheet" type="text/css" href="./style.css" />
<link rel="stylesheet" href="./button.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" />
<script src="https://kit.fontawesome.com/b08b6de27e.js" crossorigin="anonymous"></script>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description"
content="Discover a treasure trove of knowledge at CSEdge Learn! Our comprehensive guides and tutorials empower interns with the tools they need to excel in their roles. Simplify your internship journey with our easy-to-follow articles and documentation, unlocking a world of opportunities." />
<meta name="Durgesh Vaigandla" content="CSEdge" />
<title>CSEdge - Learn: Unlocking Interns' Potential</title>
<meta name="keywords"
content="CSEdge, Learn, Internship, Tutorials, Guides, Interns, Career, Development, Skills, Knowledge, Resources, Opportunities" />
<!-- Favicon-->
<link rel="icon" type="image/x-icon" href="https://csedge.courses/Images/CSEDGE-LOGO32X32.png" />
<!-- Core theme CSS (includes Bootstrap)-->
<link href="css/styles.css" rel="stylesheet" />
<link rel="stylesheet" href="./css/main.css">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css"
integrity="sha512-5A8nwdMOWrSz20fDsjczgUidUBR8liPYU+WymTZP1lmY9G6Oc7HlZv156XqnsgNUzTyMefFTcsFH/tnJE/+xBg=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous" />
<!--Google Site Search Verification-->
<meta name="google-site-verification" content="lnzqpbpjoknDdDMpcJhBthXHLR7jUWtfSXoGHbdpI40" />
<style>
/* CSS for Navbar hover and click effects */
.navbar-nav .nav-link {
transition: color 0.3s, background-color 0.3s;
}
.navbar-nav .nav-link:hover {
color: #ffffff;
background-color: #007bff; /* Change this to your desired hover background color */
border-radius: 4px;
}
.navbar-nav .nav-link:active {
color: #ffffff;
background-color: #0056b3; /* Change this to your desired active background color */
border-radius: 4px;
}
#back-to-top {
position: fixed;
bottom: 20px;
right: 20px;
display: none;
background-color: #007bff;
color: white;
border: none;
padding: 10px;
border-radius: 50%;
font-size: 18px;
cursor: pointer;
}
#back-to-top:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<style>
.card-text {
display: -webkit-box;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
-webkit-line-clamp: 3;
}
</style>
<body>
<style>
.card-text {
display: -webkit-box;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
-webkit-line-clamp: 3;
}
</style>
<!-- Responsive navbar-->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top">
<div class="container">
<img height="32px" width="32px" src="https://csedge.courses/Images/CSEDGE-LOGO32X32.png" alt="logo" />
<a class="navbar-brand" href="./index.html">CSEdge Learn</a>
<button class="navbar-toggler collapsed d-flex d-lg-none flex-column justify-content-around" type="button"
data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation">
<span class="toggler-icon top-bar"></span>
<span class="toggler-icon middle-bar"></span>
<span class="toggler-icon bottom-bar"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ms-auto mb-2 mb-lg-0 flex justify-content-center">
<li class="nav-item me-2">
<a class="nav-link" href="https://csedge.courses"><i class="fa-solid fa-house"></i> Home</a>
</li>
<li class="nav-item me-2">
<a class="nav-link" href="https://csedge.courses/about"> <i class="fa-solid fa-circle-info"></i> About</a>
</li>
<li class="nav-item me-2">
<a class="nav-link" m-1s href="#"> <i class="fa-solid fa-circle-user"></i>Careers</a>
</li>
<li class="nav-item me-2">
<a class="nav-link" href="https://csedge.courses#contact"><i class="fa-solid fa-phone"></i> Contact</a>
</li>
<li class="nav-item me-2">
<a class="nav-link active" aria-current="page" href="#!"><i class="fa-solid fa-blog"></i> Blog</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Page header with logo and tagline-->
<div class="container">
<div class="text-center my-5">
<h1 class="fw-bolder" style="margin-top: 80px;">Welcome to CSEdge Learn!</h1>
<p class="lead mb-0">
This website offers straightforward guides and tutorials for
interns, providing clear directions to complete tasks effectively.
Simplify your internship experience with our easy-to-follow articles
and docs.
</p>
</div>
</div>
</header>
<!-- Page content-->
<div class="container">
<div class="row">
<!-- Blog entries-->
<div class="col-lg-8">
<!-- Featured blog post-->
<div class="card mb-4">
<a href="./posts/github/how-to-create-github-account.html"><img class="card-img-top"
src="https://github.githubassets.com/assets/social-2deb6d7d43e7.jpg"
alt="How to Create GitHub Account " /></a>
<div class="card-body">
<div class="small text-muted">January 24, 2024</div>
<h2 class="card-title">How to Create a GitHub Account</h2>
<p class="card-text">
Learn how to create a GitHub account in just a few simple steps.
GitHub is a platform used by millions of developers worldwide
for version control and collaboration.
</p>
<a class="btn btn-primary" href="./posts/github/how-to-create-github-account.html">Read more →</a>
</div>
</div>
<!-- Nested row for non-featured blog posts-->
<div class="row" id="blog-container">
</div>
<!-- Pagination-->
<nav aria-label="Pagination">
<hr class="my-0" />
<ul class="pagination justify-content-center my-4">
<li class="page-item">
<a class="page-link" href="#!" tabindex="-1" aria-disabled="true">Previous</a>
</li>
<li class="page-item" aria-current="page">
<a class="page-link" href="./posts/master-docker.html">1</a>
</li>
<li class="page-item"><a class="page-link" href="./posts/master-github.html">2</a></li>
<li class="page-item"><a class="page-link" href="#!">3</a></li>
<li class="page-item">
<a class="page-link" href="./posts/master-github.html">Next</a>
</li>
</ul>
</nav>
</div>
<!-- Side widgets-->
<div class="col-lg-4">
<!-- Search widget-->
<div class="card mb-4">
<div class="card-header">Search</div>
<div class="card-body pr-2">
<div class="input-group">
<input class="form-control" type="text" id="searchInput" placeholder="Enter search term..."
aria-label="Enter search term..." aria-describedby="button-search" />
<button class="btn btn-primary" id="button-search" type="button" onclick="search()">
Go!
</button>
</div>
</div>
<!-- Search Results -->
<div class="me-2 ms-1" id="searchResults"></div>
</div>
<!-- Side widget-->
<div class="card mb-4">
<div class="card-header">Recent Posts</div>
<div class="card-body">
<ul class="list-unstyled mb-0">
<li>
<a class="btn" href="./posts/linkedin/creating-professional-linkedin-account.html">Unlock the Power of
Networking: Crafting Your Professional
LinkedIn Profile</a>
</li>
<li>
<a class="btn" href="./posts/github/How-to-Make-Pull-Requests-on-GitHub.html">Collaborate and
Contribute: Mastering
Pull Requests in
GitHub</a>
</li>
<li>
<a class="btn" href="./posts/github/how-to-create-github-account.html">How to create a GitHub
Account</a>
</li>
<!-- Add more related posts here -->
</ul>
</div>
</div>
<div class="card mb-4">
<div class="card-body">
<script async
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-8930077947690409"
crossorigin="anonymous"></script>
<!-- Resp -->
<ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-8930077947690409"
data-ad-slot="9318061513" data-ad-format="auto" data-full-width-responsive="true"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<script async
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-8930077947690409"
crossorigin="anonymous"></script>
<!-- Resp -->
<ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-8930077947690409"
data-ad-slot="9318061513" data-ad-format="auto" data-full-width-responsive="true"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<script async
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-8930077947690409"
crossorigin="anonymous"></script>
<!-- Resp -->
<ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-8930077947690409"
data-ad-slot="9318061513" data-ad-format="auto" data-full-width-responsive="true"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<script async
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-8930077947690409"
crossorigin="anonymous"></script>
<!-- Resp -->
<ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-8930077947690409"
data-ad-slot="9318061513" data-ad-format="auto" data-full-width-responsive="true"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<script async
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-8930077947690409"
crossorigin="anonymous"></script>
<!-- Resp -->
<ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-8930077947690409"
data-ad-slot="9318061513" data-ad-format="auto" data-full-width-responsive="true"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
<script async
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-8930077947690409"
crossorigin="anonymous"></script>
<!-- Resp -->
<ins class="adsbygoogle" style="display:block" data-ad-client="ca-pub-8930077947690409"
data-ad-slot="9318061513" data-ad-format="auto" data-full-width-responsive="true"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
</div>
</div>
</div>
</div>
<button id="back-to-top"><i class="fa fa-chevron-up"></i></button>
<!-- Site footer -->
<footer class="site-footer">
<div class="container">
<div class="row">
<div class="col-sm-12 col-md-6">
<h6>About Us</h6>
<p class="text-justify">
This website offers straightforward guides and tutorials for
interns, providing clear directions to complete tasks effectively.
Simplify your internship experience with our easy-to-follow
articles and docs.
</p>
<a class="libutton"
href="https://www.linkedin.com/build-relation/newsletter-follow?entityUrn=7202959273855713280"
target="_blank">Subscribe on LinkedIn</a>
</div>
<div class="col-xs-6 col-md-3">
<h6>Categories</h6>
<ul class="footer-links">
<li><a href="#">Web Design</a></li>
<li><a href="#">JavaScript</a></li>
<li><a href="#">HTML</a></li>
<li><a href="#">CSS</a></li>
<li><a href="#">Freebies</a></li>
<li><a href="#">Tutorials</a></li>
</ul>
</div>
<div class="col-xs-6 col-md-3">
<h6>Quick Links</h6>
<ul class="footer-links">
<li><a href="https://csedge.courses/about">About Us</a></li>
<li><a href="https://csedge.courses/#contact">Contact Us</a></li>
<li><a href="https://github.com/CSEdgeOfficial/learn.csedge.courses">Contribute</a></li>
<li><a href="./csedge.courses/privacypolicy.html">Privacy Policy</a></li>
</ul>
<ul class="social-icons">
<li><a href="https://youtube.com/@CSEdgeOfficial"><i class="fab fa-youtube" aria-hidden="true"></i></a></li>
<li><a href="https://github.com/CSEdgeOfficial"><i class="fab fa-github" aria-hidden="true"></i></a></li>
<li><a href="https://www.linkedin.com/company/csedge/"><i class="fab fa-linkedin" aria-hidden="true"></i></a></li>
<li><a href="https://www.instagram.com/csedgeofficial"><i class="fab fa-instagram" aria-hidden="true"></i></a></li>
</ul>
</div>
</div>
<hr />
</div>
<style>
.libutton {
display: flex;
flex-direction: column;
justify-content: center;
padding: 7px;
text-align: center;
outline: none;
text-decoration: none !important;
color: #ffffff !important;
width: 200px;
height: 32px;
border-radius: 16px;
background-color: #0A66C2;
font-family: "SF Pro Text", Helvetica, sans-serif;
}
.libutton:hover {
display: flex;
flex-direction: column;
justify-content: center;
padding: 7px;
text-align: center;
outline: none;
text-decoration: none;
color: #0A66C2;
width: 200px;
height: 32px;
border-radius: 16px;
background-color: black;
border-color: #0A66C2;
font-family: "SF Pro Text", Helvetica, sans-serif;
}
.social-icons {
list-style: none;
padding: 0;
}
.social-icons li {
display: inline;
margin-right: 10px;
}
.social-icons li a {
color: #333;
font-size: 20px;
}
.social-icons li a:hover {
color: #007bff;
}
</style>
<hr style="border-top: 1px solid black;">
<!-- Copyright Section -->
<div class="container">
<div class="row">
<div class="col-md-12">
<p class="copyright-text">
Copyright ©
<script>document.write(new Date().getFullYear())</script> All Rights Reserved by CSEdge Learn
</p>
</div>
</div>
</div>
</footer>
<!-- Bootstrap core JS-->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"></script>
<script src="./ScrollToTop.js"></script>
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script>
const backToTopButton = document.getElementById('back-to-top');
window.addEventListener('scroll', () => {
if (window.scrollY > 300) {
backToTopButton.style.display = 'block';
} else {
backToTopButton.style.display = 'none';
}
});
backToTopButton.addEventListener('click', () => {
window.scrollTo({
top: 0,
behavior: 'smooth'
});
});
</script>
<script>
document.addEventListener('DOMContentLoaded', function () {
fetch('data.json')
.then(response => response.json())
.then(data => {
const blogContainer = document.getElementById('blog-container');
data.forEach(post => {
const blogCard = document.createElement('div');
blogCard.className = 'col-lg-6 col-md-6 mb-4';
blogCard.innerHTML = `
<div class="card h-100">
<a href="${post.url}">
<img class="card-img-top" src="${post.image}" alt="${post.title}" />
</a>
<div class="card-body">
<div class="small text-muted">${post.date}</div>
<h2 class="card-title">${post.title}</h2>
<p class="card-text">${post.description}</p>
<a class="btn btn-primary" href="${post.url}">Read more →</a>
</div>
</div>
`;
blogContainer.appendChild(blogCard);
});
});
});
</script>
</body>
</html>