forked from CSEdgeOfficial/learn.csedge.courses
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
367 lines (365 loc) · 15 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
<!DOCTYPE html>
<html lang="en">
<head>
<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="author" 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" />
<!--Google Site Search Verification-->
<meta
name="google-site-verification"
content="lnzqpbpjoknDdDMpcJhBthXHLR7jUWtfSXoGHbdpI40" />
</head>
<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">
<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"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ms-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" href="https://csedge.courses">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://csedge.courses/about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://csedge.courses#contact"
>Contact</a
>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#!">Blog</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Page header with logo and tagline-->
<header class="py-5 bg-light border-bottom mb-4">
<div class="container">
<div class="text-center my-5">
<h1 class="fw-bolder">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">
<div class="col-lg-6">
<!-- Blog post-->
<div class="card mb-4">
<a
href="./posts/linkedin/creating-professional-linkedin-account.html"
><img
class="card-img-top"
src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQkx3NudeL9WB5diyA7peE-rrrZ1OuFXrzSChgyKhr6iQ&s"
alt="Professional LinkedIn account creation"
/></a>
<div class="card-body">
<div class="small text-muted">April 25, 2024</div>
<h2 class="card-title h4">
Unlock the Power of Networking: Crafting Your Professional
LinkedIn Profile
</h2>
<p class="card-text">
Embark on a journey to create a compelling Professional
LinkedIn account that opens doors to limitless
opportunities. This step-by-step guide demystifies the
process, empowering you to harness the full potential of
LinkedIn's vast network, connecting millions worldwide.
</p>
<a
class="btn btn-primary"
href="./posts/linkedin/creating-professional-linkedin-account.html"
>Read more →</a
>
</div>
</div>
<!-- Blog post-->
<div class="card mb-4">
<a
href="./posts/github/How-to-Apply-for-GitHub-Student-Developer-Pack.html"
><img
class="card-img-top"
src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQNYDqYlvfORMgsjdtflgwHnjA-hHUwJPkFaLDn5zFwyQ&s"
alt="GitHub Student Pro Account"
/></a>
<div class="card-body">
<div class="small text-muted">April 25, 2024</div>
<h2 class="card-title h4">
Unlock Exclusive Benefits: Applying for GitHub Student Pro
Account
</h2>
<p class="card-text">
Discover the pathway to unlocking the full potential of your
student journey by acquiring a GitHub Student Pro account.
Dive into this comprehensive guide to understand the
application process, eligibility criteria, and the plethora
of benefits awaiting you. Elevate your coding experience and
collaboration capabilities with GitHub's premium features
tailored for students.
</p>
<a
class="btn btn-primary"
href="./posts/github/How-to-Apply-for-GitHub-Student-Developer-Pack.html"
>Read more →</a
>
</div>
</div>
</div>
<div class="col-lg-6">
<!-- Blog post-->
<div class="card mb-4">
<a href="./posts/azure/How-to-Create-an-Azure-Account.html"
><img
class="card-img-top"
src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTplePLm0DvcyhLXZHdWe4gMVzpl6LsyfLYpsLxCHcGPQ&s"
alt="Azure Student Account"
/></a>
<div class="card-body">
<div class="small text-muted">April 25, 2024</div>
<h2 class="card-title h4">
Empower Your Learning: Creating Your Azure Student Account
</h2>
<p class="card-text">
Embark on your cloud journey with Azure by unlocking the
Azure Student account, your gateway to a world of learning
and innovation. Dive into this comprehensive guide to
discover the step-by-step process to create your Azure
Student account and access $200 in free Azure credits.
Explore the vast array of Azure services and resources
tailored to support your educational endeavors, empowering
you to build, experiment, and innovate without constraints.
</p>
<a
class="btn btn-primary"
href="./posts/azure/How-to-Create-an-Azure-Account.html"
>Read more →</a
>
</div>
</div>
<!-- Blog post-->
<div class="card mb-4">
<a
href="./posts/github/How-to-Make-Pull-Requests-on-GitHub.html"
><img
class="card-img-top"
src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRloyzP9KVKtrLX6gDh5koAKVUHZ3prgr3b0YRlK-ORcg&s"
alt="GitHub Pull Request"
/></a>
<div class="card-body">
<div class="small text-muted">April 25, 2024</div>
<h2 class="card-title h4">
Collaborate and Contribute: Mastering Pull Requests in
GitHub
</h2>
<p class="card-text">
Unlock the power of collaboration with GitHub by mastering
the art of creating Pull Requests. This comprehensive guide
walks you through the step-by-step process of initiating a
Pull Request, from forking a repository to submitting your
changes for review. Learn how to contribute to open-source
projects and collaborate effectively with peers, empowering
you to make meaningful contributions to the global developer
community. Ready to elevate your GitHub workflow? Let's dive
in!
</p>
<a
class="btn btn-primary"
href="./posts/github/How-to-Make-Pull-Requests-on-GitHub.html"
>Read more →</a
>
</div>
</div>
</div>
</div>
<!-- Pagination-->
<nav aria-label="Pagination">
<hr class="my-0" />
<ul class="pagination justify-content-center my-4">
<li class="page-item disabled">
<a class="page-link" href="#" tabindex="-1" aria-disabled="true"
>Newer</a
>
</li>
<li class="page-item active" aria-current="page">
<a class="page-link" href="#!">1</a>
</li>
<li class="page-item"><a class="page-link" href="#!">2</a></li>
<li class="page-item"><a class="page-link" href="#!">3</a></li>
<li class="page-item disabled">
<a class="page-link" href="#!">...</a>
</li>
<li class="page-item"><a class="page-link" href="#!">15</a></li>
<li class="page-item">
<a class="page-link" href="#!">Older</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>
<!-- Categories widget-->
<div class="card mb-4">
<div class="card-header">Categories</div>
<div class="card-body">
<div class="row">
<div class="col-sm-6">
<ul class="list-unstyled mb-0">
<li><a href="#!">Web Design</a></li>
<li><a href="#!">HTML</a></li>
<li><a href="#!">Freebies</a></li>
</ul>
</div>
<div class="col-sm-6">
<ul class="list-unstyled mb-0">
<li><a href="#!">JavaScript</a></li>
<li><a href="#!">CSS</a></li>
<li><a href="#!">Tutorials</a></li>
</ul>
</div>
</div>
</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
href="./posts/github/How-to-Make-Pull-Requests-on-GitHub.html"
>Collaborate and Contribute: Mastering Pull Requests in
GitHub</a
>
</li>
<li>
<a 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>
</div>
</div>
<!-- Footer-->
<footer class="py-5 bg-dark">
<div class="container">
<p class="m-0 text-center text-white">
Copyright © CSEdge Learn 2024
</p>
</div>
</footer>
<!-- Bootstrap core JS-->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<script src="./posts/script.js"></script>
</body>
</html>