-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
650 lines (410 loc) · 17.7 KB
/
Copy pathindex.html
File metadata and controls
650 lines (410 loc) · 17.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--
- primary meta tag
-->
<title>CodeNest</title>
<meta name="title" content="CodeNest- The Best Program for guidance of freshers">
<!--
- custom css link
-->
<link rel="stylesheet" href="./assets/css/style.css">
<!--
- google font link
-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=League+Spartan:wght@400;500;600;700;800&family=Poppins:wght@400;500&display=swap"
rel="stylesheet">
</head>
<body id="top">
<!--
- #HEADER
-->
<header class="header" data-header>
<div class="container">
<a href="#" class="logo">
<img src="assets\images\codenest.gif" width="103" height="93" alt="logo">
</a>
<nav class="navbar" data-navbar>
<div class="wrapper">
<a href="#" class="logo">
<img src="assets\images\codenest.gif" width="103" height="93" alt="codenest">
</a>
<button class="nav-close-btn" aria-label="close menu" data-nav-toggler>
<ion-icon name="close-outline" aria-hidden="true"></ion-icon>
</button>
</div>
<ul class="navbar-list">
<li class="navbar-item">
<a href="#home" class="navbar-link" data-nav-link>Home</a>
</li>
<li class="navbar-item">
<a href="#about" class="navbar-link" data-nav-link>About</a>
</li>
<li class="navbar-item">
<a href="#courses" class="navbar-link" data-nav-link>Roadmaps</a>
</li>
<li class="navbar-item">
<a href="#blog" class="navbar-link" data-nav-link>Blogs</a>
</li>
<li class="navbar-item">
<a href="New folder\text.html" class="navbar-link" data-nav-link>Contact</a>
</li>
</ul>
</nav>
<div class="header-actions">
<button class="header-action-btn" aria-label="open menu" data-nav-toggler>
<ion-icon name="menu-outline" aria-hidden="true"></ion-icon>
</button>
</div>
<div class="overlay" data-nav-toggler data-overlay></div>
</div>
</header>
<main>
<article>
<!--
- #HERO
-->
<section class="section hero has-bg-image" id="home" aria-label="home"
style="background-image: url('images/hero-bg.svg')">
<div class="container">
<div class="hero-content">
<h1 class="h1 section-title">
Decide your career<span class="span">TODAY!</span>
</h1>
<p class="hero-text">
Excepteur sint occaecat cupidatat non proident sunt in culpa qui officia deserunt mollit.
</p>
<a href="#" class="btn has-before">
<span class="span">Find courses</span>
<ion-icon name="arrow-forward-outline" aria-hidden="true"></ion-icon>
</a>
</div>
<figure class="hero-banner">
<div class="img-holder one" style="--width: 270; --height: 300;">
<img src="assets\images\hero-banner-1.jpg" width="270" height="300" alt="hero banner" class="img-cover">
</div>
<div class="img-holder two" style="--width: 240; --height: 370;">
<img src="assets\images\hero-banner-2.jpg" width="240" height="370" alt="hero banner" class="img-cover">
</div>
</figure>
</div>
</section>
<!--
- #CATEGORY
-->
<section class="section category" aria-label="category">
<div class="container">
<p class="section-subtitle">Categories</p>
<h2 class="h2 section-title">
Steps Towards <span class="span">Comptetive Coding</span>
</h2>
<p class="section-text">
Consectetur adipiscing elit sed do eiusmod tempor.
</p>
<ul class="grid-list">
<li>
<div class="category-card" style="--color: 170, 75%, 41%">
<div class="card-icon">
<img src="assets\images\hackerrnank.png" width="40" height="40" loading="lazy"
alt="Online Degree Programs" class="img">
</div>
<h3 class="h3">
<a href="https://www.hackerrank.com/" class="card-title">Hackerrank</a>
</h3>
<p class="card-text">
HackerRank is a technology company that focuses on competitive programming challenges for both consumers and businesses.
</p>
<span class="card-badge">Level 1</span>
</div>
</li>
<li>
<div class="category-card" style="--color: 351, 83%, 61%">
<div class="card-icon">
<img src="assets\images\leetcode.png" width="40" height="40" loading="lazy"
alt="Non-Degree Programs" class="img">
</div>
<h3 class="h3">
<a href="https://leetcode.com/problemset/all/" class="card-title">LeetCode</a>
</h3>
<p class="card-text">
LeetCode is the best platform to help you enhance your skills, expand your knowledge and prepare for technical interviews.
</p>
<span class="card-badge">Level 2</span>
</div>
</li>
<li>
<div class="category-card" style="--color: 229, 75%, 58%">
<div class="card-icon">
<img src="assets\images\codechef.png" width="40" height="40" loading="lazy"
alt="Off-Campus Programs" class="img">
</div>
<h3 class="h3">
<a href="https://www.codechef.com/" class="card-title">Codechef</a>
</h3>
<p class="card-text">
CodeChef is an online platform that organizes algorithms, computer programming, and programming contests for programmers.
</p>
<span class="card-badge">Level 3</span>
</div>
</li>
<li>
<div class="category-card" style="--color: 42, 94%, 55%">
<div class="card-icon">
<img src="assets\images\topcoder.png" width="40" height="40" loading="lazy"
alt="Hybrid Distance Programs" class="img">
</div>
<h3 class="h3">
<a href="https://www.topcoder.com/" class="card-title">TopCoders</a>
</h3>
<p class="card-text">
Topcoder is a crowdsourcing company with an open global community of designers, developers, data scientists, and competitive programmers.
</p>
<span class="card-badge">Level 4</span>
</div>
</li>
</ul>
</div>
</section>
<!--
- #RoadMaps
-->
<section class="section course" id="courses" aria-label="course">
<div class="container">
<h2 class="h2 section-title">Some Popular fields</h2>
<ul class="grid-list">
<li>
<div class="course-card">
<figure class="card-banner img-holder" style="--width: 370; --height: 220;">
<img src="./assets/images/course-1.jpg" width="370" height="220" loading="lazy"
alt="Build Responsive Real- World Websites with HTML and CSS" class="img-cover">
</figure>
<div class="card-content">
<h3 class="h3">
<a href="assets\images\frontend.png" class="card-title">Frontend Developer</a>
</h3>
<p>A frontend developer, often referred to as a front-end developer or UI (User Interface) developer, is a professional who specializes in designing and implementing the user interface and user experience of a website or web application. </p>
<li>
<div class="course-card">
<figure class="card-banner img-holder" style="--width: 370; --height: 220;">
<img src="./assets/images/course-2.jpg" width="370" height="220" loading="lazy"
alt="Java Programming Masterclass for Software Developers" class="img-cover">
</figure>
<div class="card-content">
<h3 class="h3">
<a href="assets\images\Data-Science-Roadmap.png" class="card-title">Data Scientist</a>
</h3>
<p>A data scientist is a professional who uses a combination of domain knowledge, programming skills, statistical analysis, and machine learning techniques to extract valuable insights and knowledge from large and complex datasets.</p>
<li>
<div class="course-card">
<figure class="card-banner img-holder" style="--width: 370; --height: 220;">
<img src="./assets/images/course-3.jpg" width="370" height="220" loading="lazy"
alt="The Complete Camtasia Course for Content Creators" class="img-cover">
</figure>
<div class="card-content">
<h3 class="h3">
<a href="assets\images\DevOps Roadmap.png" class="card-title">Devops Engineer</a>
</h3>
<p>A DevOps engineer is a professional who specializes in implementing and managing the practices and tools associated with DevOps (Development and Operations). DevOps engineers play a pivotal role in bridging the gap </p>
</div>
</section>
<!--
- #BLOG
-->
<section class="section blog has-bg-image" id="blog" aria-label="blog"
style="background-image: url('./assets/images/blog-bg.svg')">
<div class="container">
<h2 class="h2 section-title">Read More</h2>
<ul class="grid-list">
<li>
<div class="blog-card">
<figure class="card-banner img-holder has-after" style="--width: 370; --height: 370;">
<img src="./assets/images/blog-1.jpg" width="370" height="370" loading="lazy"
alt="Become A Better Blogger: Content Planning" class="img-cover">
</figure>
<div class="card-content">
<a href="#" class="card-btn" aria-label="read more">
<ion-icon name="arrow-forward-outline" aria-hidden="true"></ion-icon>
</a>
<h3 class="h3">
<a href="https://www.jasonernst.com/" class="card-title">Jason Ernst’s Computer Science Blog</a>
</h3>
<p class="card-text">
Lorem Ipsum Dolor Sit Amet Cons Tetur Adipisicing Sed.
</p>
</div>
</div>
</li>
<li>
<div class="blog-card">
<figure class="card-banner img-holder has-after" style="--width: 370; --height: 370;">
<img src="./assets/images/blog-2.jpg" width="370" height="370" loading="lazy"
alt="Become A Better Blogger: Content Planning" class="img-cover">
</figure>
<div class="card-content">
<a href="#" class="card-btn" aria-label="read more">
<ion-icon name="arrow-forward-outline" aria-hidden="true"></ion-icon>
</a>
<a href="#" class="card-subtitle"></a>
<h3 class="h3">
<a href="http://blog.oddhead.com/" class="card-title">ALGORITHMIC ECONOMICS POSTDOC POSITION AT MICROSOFT RESEARCH, NYC</a>
</h3>
<p class="card-text">
Lorem Ipsum Dolor Sit Amet Cons Tetur Adipisicing Sed.
</p>
</div>
</div>
</li>
<li>
<div class="blog-card">
<figure class="card-banner img-holder has-after" style="--width: 370; --height: 370;">
<img src="assets\images\blog-3.jpg" width="370" height="370" loading="lazy"
alt="Become A Better Blogger: Content Planning" class="img-cover">
</figure>
<div class="card-content">
<a href="#" class="card-btn" aria-label="read more">
<ion-icon name="arrow-forward-outline" aria-hidden="true"></ion-icon>
</a>
<a href="#" class="card-subtitle"></a>
<h3 class="h3">
<a href="https://haystack.csail.mit.edu/blog/" class="card-title">Haystack Blog</a>
</h3>
<p class="card-text">
Lorem Ipsum Dolor Sit Amet Cons Tetur Adipisicing Sed.
</p>
</div>
</div>
</li>
</div>
</section>
</article>
</main>
<!--
- #FOOTER
-->
<footer class="footer" style="background-image: url('./assets/images/footer-bg.png')">
<div class="footer-top section">
<div class="container grid-list">
<div class="footer-brand">
<a href="#" class="logo">
<img src="assets\images\codenest.gif" width="162" height="50" alt="EduWeb logo">
</a>
<p class="footer-brand-text">
Lorem ipsum dolor amet consecto adi pisicing elit sed eiusm tempor incidid unt labore dolore.
</p>
<div class="wrapper">
<span class="span">Add:</span>
<address class="address">70-80 Upper St Norwich NR2</address>
</div>
<div class="wrapper">
<span class="span">Call:</span>
<a href="tel:+011234567890" class="footer-link">+01 123 4567 890</a>
</div>
<div class="wrapper">
<span class="span">Email:</span>
<a href="mailto:info@eduweb.com" class="footer-link">info@codenest.com</a>
</div>
</div>
<ul class="footer-list">
<li>
<p class="footer-list-title">Online Platform</p>
</li>
<li>
<a href="#" class="footer-link">About</a>
</li>
<li>
<a href="#" class="footer-link">Roadmaps</a>
</li>
<li>
<a href="#" class="footer-link">Resources</a>
</li>
</ul>
<ul class="footer-list">
<li>
<p class="footer-list-title">Links</p>
</li>
<li>
<a href="#" class="footer-link">Contact Us</a>
</li>
<li>
<a href="#" class="footer-link">Gallery</a>
</li>
<li>
<a href="#" class="footer-link">News & Articles</a>
</li>
<li>
<a href="#" class="footer-link">FAQ's</a>
</li>
<li>
<a href="#" class="footer-link">Sign In/Registration</a>
</li>
<li>
<a href="#" class="footer-link">Coming Soon</a>
</li>
</ul>
<div class="footer-list">
<p class="footer-list-title">Contacts</p>
<p class="footer-list-text">
Enter your email address to register to our newsletter subscription
</p>
<form action="" class="newsletter-form">
<input type="email" name="email_address" placeholder="Your email" required class="input-field">
<button type="submit" class="btn has-before">
<span class="span">Subscribe</span>
<ion-icon name="arrow-forward-outline" aria-hidden="true"></ion-icon>
</button>
</form>
<ul class="social-list">
<li>
<a href="#" class="social-link">
<ion-icon name="logo-facebook"></ion-icon>
</a>
</li>
<li>
<a href="#" class="social-link">
<ion-icon name="logo-linkedin"></ion-icon>
</a>
</li>
<li>
<a href="#" class="social-link">
<ion-icon name="logo-instagram"></ion-icon>
</a>
</li>
<li>
<a href="#" class="social-link">
<ion-icon name="logo-twitter"></ion-icon>
</a>
</li>
<li>
<a href="#" class="social-link">
<ion-icon name="logo-youtube"></ion-icon>
</a>
</li>
</ul>
</div>
</div>
</div>
</footer>
<!--
- #BACK TO TOP
-->
<a href="#top" class="back-top-btn" aria-label="back top top" data-back-top-btn>
<ion-icon name="chevron-up" aria-hidden="true"></ion-icon>
</a>
<!--
- custom js link
-->
<script src="./assets/js/script.js" defer></script>
<!--
- ionicon link
-->
<script type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"></script>
</body>
</html>