-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfindyourcareer.html
733 lines (633 loc) · 31.4 KB
/
findyourcareer.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
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
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
<!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">
<title>Document</title>
<script src="https://kit.fontawesome.com/838022ab7e.js" crossorigin="anonymous"></script>
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<link rel="stylesheet" href="./footer/footer.css"/>
<link rel="stylesheet" href="./Style/FindYourCareer.css">
<!-- <link rel="stylesheet" href="./sharadstyles/navbar.css"> -->
<style>
#navbar{
display: flex;
}
#navbar>a{
padding: 17px;
text-decoration: none;
color: black;
margin-left: 25px;
font-size: 16px;
}
#i{
border-color: blue;
color: rgb(255, 255, 255);
}
.dropbtn{
background-color: blue;
color: rgb(255, 255, 255);
margin: 7px;
border-radius: 5px;
}
#inputsearch{
margin: 6px;
background-color: white;
width: 200px;
}
.search1{
width: 50px;
background-color: rgb(73, 73, 240);
height: 40px;
margin-top: 5px;
}
#navbar>img{
height: 50px;
margin-right: 20px;
margin-left: 20px;
width: 120px;
}
#user123{
margin: 17px;
margin-left: 50px;
}
#q{
color: white;
font-size: 16px;
text-decoration: none;
}
</style>
</head>
<body>
<!-- <<=============== NAVBAR =====================>> -->
<div id="navbar">
<img src="data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPCEtLSBHZW5lcmF0b3I6IEFkb2JlIElsbHVzdHJhdG9yIDE2LjIuMCwgU1ZHIEV4cG9ydCBQbHVnLUluIC4gU1ZHIFZlcnNpb246IDYuMDAgQnVpbGQgMCkgIC0tPgo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPgo8c3ZnIHZpZXdCb3g9IjAgMCAxMTU1IDE2NCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgc3Ryb2tlLW1pdGVybGltaXQ9IjIiPjxwYXRoIGQ9Ik0xNTkuNzUgODEuNTRjMC00NC40OSAzNi42My04MC40NyA4Mi40My04MC40NyA0Ni4xMiAwIDgyLjc2IDM2IDgyLjc2IDgwLjQ3IDAgNDQuMTYtMzYuNjQgODAuOC04Mi43NiA4MC44LTQ1LjggMC04Mi40My0zNi42OC04Mi40My04MC44em0xMjUuNjEgMGMwLTIyLjI0LTE5LjMtNDEuODctNDMuMTgtNDEuODctMjMuNTUgMC00Mi44NSAxOS42My00Mi44NSA0MS44NyAwIDIyLjU3IDE5LjMgNDIuMiA0Mi44NSA0Mi4yIDIzLjkyIDAgNDMuMTgtMTkuNjMgNDMuMTgtNDIuMnptNzA1LjYzIDEuMzFjMC00OC43NCAzOS41OC04MS43OCA3NS41Ny04MS43OCAyNC41MyAwIDM4LjYgNy41MiA0OC4wOCAyMS45MmwzLjc3LTE5aDM2Ljc5djE1NS40aC0zNi43OWwtNC43NS0xNmMtMTAuNzkgMTEuNzgtMjQuMjEgMTktNDcuMSAxOS0zNS4zMy0uMDUtNzUuNTctMzEuMTMtNzUuNTctNzkuNTR6bTEyNS42MS0uMzNjLS4wOS0yMy41MjctMTkuNDctNDIuODM1LTQzLTQyLjgzNS0yMy41OSAwLTQzIDE5LjQxMS00MyA0M3YuMTY1YzAgMjEuNTkgMTkuMyA0MC44OSA0Mi44NiA0MC44OSAyMy44NSAwIDQzLjE0LTE5LjMgNDMuMTQtNDEuMjJ6TTk0NS43OCAyMlY0aC00MC4yM3YxNTUuMzloNDAuMjNWNzUuNjZjMC0yNS4xOSAxMi40NC0zOC4yNyAzNC0zOC4yNyAxLjQzIDAgMi43OS4xIDQuMTIuMjNMOTkxLjM2LjExYy0yMC45Ny4xMS0zNi4xNyA3LjMtNDUuNTggMjEuODl6bS00MDQuMjcuMDF2LTE4bC00MC4yMy4wOS4zNCAxNTUuMzcgNDAuMjMtLjA5LS4yMi04My43MmMtLjA2LTI1LjE4IDEyLjM1LTM4LjI5IDMzLjkzLTM4LjM0IDEuMzc2LjAwNCAyLjc1Mi4wODEgNC4xMi4yM0w1ODcuMSAwYy0yMSAuMTctMzYuMjIgNy4zOS00NS41OSAyMi4wMXpNMzM4Ljg4IDk5LjJWNC4wMWg0MC4yMlY5NC4zYzAgMTkuOTUgMTEuMTIgMzEuNzMgMzAuNDIgMzEuNzMgMjEuNTkgMCAzNC0xMy4wOSAzNC0zOC4yOFY0LjAxaDQwLjI0djE1NS4zOGgtNDAuMjF2LTE4Yy05LjQ4IDE0LjcyLTI0Ljg2IDIxLjkyLTQ2LjEyIDIxLjkyLTM1Ljk4LjAxLTU4LjU1LTI2LjE2LTU4LjU1LTY0LjExem0zOTEuNzQtMTcuNDhjLjA5LTQzLjUxIDMxLjIzLTgwLjc0IDgwLjYyLTgwLjY1IDQ1LjguMDkgNzguMTEgMzYuNzggNzggODAgLjAxIDQuMjczLS4zMyA4LjU0LTEgMTIuNzZsLTExOC40MS0uMjJjNC41NCAxOC42NSAxOS44OSAzMi4wOSA0My4xMiAzMi4xNCAxNC4wNiAwIDI5LjEyLTUuMTggMzguMy0xNi45NGwyNy40NCAyMmMtMTQuMTEgMTkuOTMtMzkgMzEuNjYtNjUuNDggMzEuNjEtNDYuNzUtLjE2LTgyLjY3LTM1LjIzLTgyLjU5LTgwLjd6bTExOC4xMi0xNi4xNGMtMi4yNi0xNS43LTE4LjU5LTI3Ljg0LTM3Ljg5LTI3Ljg3LTE4LjY1IDAtMzMuNzEgMTEuMDYtMzkuNjMgMjcuNzNsNzcuNTIuMTR6bS0yNjEuNCA1OS45NGwzNS43Ni0xOC43MmM1LjkxIDEyLjgxIDE3LjczIDIwLjM2IDM0LjQ4IDIwLjM2IDE1LjQzIDAgMjEuMzQtNC45MiAyMS4zNC0xMS44MiAwLTI1LTg0LjcxLTkuODUtODQuNzEtNjcgMC0zMS41MiAyNy41OC00OC4yNiA2MS43Mi00OC4yNiAyNS45NCAwIDQ4LjkyIDExLjQ5IDYxLjQgMzIuODNsLTM1LjQ0IDE4Ljc1Yy01LjI1LTEwLjUxLTE1LjEtMTYuNDItMjcuNTgtMTYuNDItMTIuMTQgMC0xOC4wNiA0LjI3LTE4LjA2IDExLjQ5IDAgMjQuMyA4NC43MSA4Ljg3IDg0LjcxIDY3IDAgMzAuMjEtMjQuNjIgNDguNTktNjQuMzUgNDguNTktMzMuODItLjAzLTU3LjQ2LTExLjE5LTY5LjI3LTM2Ljh6TTAgODEuNTRDMCAzNi43MyAzNi42My43NCA4Mi40My43NGMyNy45NDctLjE5NiA1NC4xODIgMTMuNzM3IDY5LjY3IDM3bC0zNC4zNCAxOS45MmE0Mi45NzIgNDIuOTcyIDAgMDAtMzUuMzMtMTguMzJjLTIzLjU1IDAtNDIuODUgMTkuNjMtNDIuODUgNDIuMiAwIDIyLjU3IDE5LjMgNDIuMiA0Mi44NSA0Mi4yYTQyLjUwMiA0Mi41MDIgMCAwMDM2LjMxLTIwbDM0IDIwLjI4Yy0xNS4zMDcgMjMuOTU1LTQxLjkwMiAzOC40MzEtNzAuMzMgMzguMjhDMzYuNjMgMTYyLjM0IDAgMTI1LjY2IDAgODEuNTR6IiBmaWxsPSIjMDA1NkQyIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48L3N2Zz4=" alt="">
<button class="dropbtn"> <a id="q" href="./mhmepg.html">Explore</a>
<i id="i"class="fa fa-caret-down"></i>
</button>
<input id="inputsearch" type="text">
<button class="search1">
<i id ="searching" class="fa-solid fa-magnifying-glass"></i>
</button>
<a href="./onlinedegrees1.html">Online Degrees</a>
<a href="./findyourcareer.html">Find your New Career</a>
<a href="./ForBusinessEnterprise.html">For Enterprise</a>
<a href="">For universities</a>
<i id ="user123"class="fa-solid fa-user-large"></i>
</div>
<!-- //////////////////////////////// navbar end ///////////////////// -->
<!-- <<================== TOP BANNER ======================>> -->
<div id="banner">
<div id="left-banner">
<h2 id="banner-h2">Launch your new career with a Professional <br>on Coursera</h2>
<p id="banner-p">Professional Certificates offer flexible, online training designed to get you job-ready <br>for high-growth fields.</p>
<h4 id="banner-h4">7 day free trial | Starting at $39 per month | Less than 6 months at your own pace</h4>
<button id="banner-btn">Explore Careers</button>
</div>
<div id="right-banner">
<img id = "banner-img"src="https://d3njjcbhbojbot.cloudfront.net/api/utilities/v1/imageproxy/https://images.ctfassets.net/wp1lcwdav1p1/7fBChGFRu0UddU2086Tc00/04e31231db247249b2239466ab7b21d4/learnerImage.png?auto=format%2Ccompress&dpr=1&w=575&h=500" alt="banner">
</div>
</div>
<!-- <<============== Take First Step Part ===============>> -->
<div class="banner2">
<div class="banner2-head">
<h2>Take the first step toward your new career</h2>
<p>
Get professional-level training and earn a credential from a leading
company
</p>
</div>
<div class="banner2-grid">
<div class="banner2-item">
<img
src="https://d3njjcbhbojbot.cloudfront.net/api/utilities/v1/imageproxy/https://images.ctfassets.net/wp1lcwdav1p1/5aaXYWiJDgxCWlwMBkGMzL/0113a061d8c2591b4da76dbe7b642e6b/prior-experience-optional.png?auto=format%2Ccompress&dpr=1&w=86&h=86"
alt=""
/>
<h3>Prior experience<br> optional</h3>
<p>Build job-ready skills, even if you're new to the field.</p>
<hr />
<div class="color1">
<h3>3,428,351</h3>
<p>job openings across Professional Certificate fields</p>
</div>
</div>
<div class="banner2-item">
<img
src="https://d3njjcbhbojbot.cloudfront.net/api/utilities/v1/imageproxy/https://images.ctfassets.net/wp1lcwdav1p1/4U610xMvHlUIq2IaTwvuvO/434930d304d6c60a1636f312d91fd932/earn-valuable-credential.png?auto=format%2Ccompress&dpr=1&w=86&h=86"
alt=""
/>
<h3>Earn a valuable <br>credential</h3>
<p>
Apply your new skills to real-world projects using the latest
industry tools and techniques.
</p>
<hr />
<div class="color1">
<h3>4.7/5</h3>
<p>
average rating given by 200,000+ global learners enrolled in an
entry-level Professional Certificate ²
</p>
</div>
</div>
<div class="banner2-item">
<img
src="https://d3njjcbhbojbot.cloudfront.net/api/utilities/v1/imageproxy/https://images.ctfassets.net/wp1lcwdav1p1/4LmTbeuriXIA8MPcByhPaE/30238e0d1ef9952fe1c4fc76b96f4608/learn-pace.png?auto=format%2Ccompress&dpr=1&w=86&h=86"
alt=""
/>
<h3>Learn at your own pace</h3>
<p>
Complete the training in less than 6 months while working a
full-time job.
</p>
<hr />
<div class="color1">
<h3>Under 10 hours</h3>
<p>of flexible study per week ³</p>
</div>
</div>
</div>
</div>
<!-- <====================== Learn from the best part ===============>>> -->
<div class="learn-best">
<div class="learn-best-head">
<h2>Take the first step toward your new career</h2>
<p>
Get professional-level training and earn a credential from a leading
company
</p>
</div>
<div class="learn-best-img">
<img
src="https://d3njjcbhbojbot.cloudfront.net/api/utilities/v1/imageproxy/https://images.ctfassets.net/wp1lcwdav1p1/57pxeM0QIytWAMiZOgvCH2/162073e69871af786654cd6475641ce9/368px-Google_2015_logo.png?q=60&auto=format%2Ccompress&dpr=1&w=155&h=60"
alt=""
/>
<img
src="https://d3njjcbhbojbot.cloudfront.net/api/utilities/v1/imageproxy/https://images.ctfassets.net/wp1lcwdav1p1/5cE28FqhEgzpDMR4WygeNN/0ea4c4867884d5bc5b1d2446a55355d1/Salesforce.com_logo.png?q=60&auto=format%2Ccompress&dpr=1&w=155&h=60"
alt=""
/>
<img
src="https://d3njjcbhbojbot.cloudfront.net/api/utilities/v1/imageproxy/https://images.ctfassets.net/wp1lcwdav1p1/4adnkcJIgVKTinBB0j9GF8/5fe5eecf60bf305dd0a7ce40bb721cd9/ibm.png?q=60&auto=format%2Ccompress&dpr=1&w=155&h=60"
alt=""
/>
<img
src="https://d3njjcbhbojbot.cloudfront.net/api/utilities/v1/imageproxy/https://images.ctfassets.net/wp1lcwdav1p1/3bmmVE1BHvDQUFldOXgDQe/75409a97cfd2ee95178b05d475eaaf04/meta.png?q=60&auto=format%2Ccompress&dpr=1&w=155&h=60"
alt=""
/>
<img
src="https://d3njjcbhbojbot.cloudfront.net/api/utilities/v1/imageproxy/https://images.ctfassets.net/wp1lcwdav1p1/1xzAHz5ocacHB4KjquZH4A/ded1512fb4605dfce5e3767af630cc08/icom-intuit-nav-logo-small.png?q=60&auto=format%2Ccompress&dpr=1&w=155&h=60"
alt=""
/>
</div>
</div>
<!-- <<=========================Careers Card Part ====================> -->
<div class="find-career" id="find-career">
<div class="first-step-head">
<h2>Find a career that works for you</h2>
<p>
Whatever your background or interests are, Professional Certificates
have you covered.
</p>
</div>
<div class="find-career-courses">
<div class="course-card">
<img
src="https://d3njjcbhbojbot.cloudfront.net/api/utilities/v1/imageproxy/https://images.ctfassets.net/wp1lcwdav1p1/2h1LLOfQVZhndBRZgW4Fgg/deb47e78448277edb62a0820e2df5134/IT_Support.png?auto=format%2Ccompress&dpr=1&w=450&h=200&q=40"
alt=""
/>
<div>
<h4>IT Support</h4>
<p>
IT support specialists evaluate and troubleshoot technology issues
so equipment runs smoothly
</p>
<h4>If you like:</h4>
<ul>
<li>Solving problems</li>
<li>Attention to detail</li>
<li>Troubleshooting</li>
</ul>
<h4>$50,875 average entry-level salary</h4>
<h4>3,555 job openings</h4>
<hr />
<h4>Recommended Professional Certificate(s)</h4>
</div>
<div class="div2">
<img src="https://d3njjcbhbojbot.cloudfront.net/api/utilities/v1/imageproxy/https://images.ctfassets.net/wp1lcwdav1p1/4YgA9i6O79eZxdUK345q55/b4e7041b0f0d92e0da7d3c835e168c8f/Google-G_360x360.jpeg?auto=format%2Ccompress&dpr=1&w=30&h=30&q=40" alt="">
<a href="#"><h3>Google UX design</h3></a>
</div>
</div>
<div class="course-card">
<img
src="https://d3njjcbhbojbot.cloudfront.net/api/utilities/v1/imageproxy/https://images.ctfassets.net/wp1lcwdav1p1/OvqUFDOLTCTuZjYXmMdjm/30aaef4fc0eb48a871f1e9dbd6abae74/Rectangle_3371-2.png?auto=format%2Ccompress&dpr=1&w=450&h=200&q=40"
alt=""
/>
<div>
<h4>Data Analytics</h4>
<p>
Data analysts collect, organize, and transform data to make
informed business decisions
</p>
<h4>If you like:</h4>
<ul>
<li>Working with numbers</li>
<li>Solving problems</li>
<li>Attention to detail</li>
</ul>
<h4>$67,974 average entry-level salary</h4>
<h4>337,407 job openings</h4>
<hr />
<h4>Recommended Professional Certificate(s)</h4>
</div>
<div class="div2">
<img src="https://d3njjcbhbojbot.cloudfront.net/api/utilities/v1/imageproxy/https://images.ctfassets.net/wp1lcwdav1p1/4YgA9i6O79eZxdUK345q55/b4e7041b0f0d92e0da7d3c835e168c8f/Google-G_360x360.jpeg?auto=format%2Ccompress&dpr=1&w=30&h=30&q=40" alt="">
<a href="#"><h3>Google Data Analystics</h3></a>
</div>
</div>
<div class="course-card">
<img
src="https://d3njjcbhbojbot.cloudfront.net/api/utilities/v1/imageproxy/https://images.ctfassets.net/wp1lcwdav1p1/1Wnn06AEvu2Kz6EbeusMl1/17ed331b495b4a66631acdf29713e0de/Project_Management.png?auto=format%2Ccompress&dpr=1&w=450&h=200&q=40"
alt=""
/>
<div>
<h4>Project Management</h4>
<p>
Project Managers oversee the planning and execution of projects to
ensure they’re successful
</p>
<h4>If you like:</h4>
<ul>
<li>Leading a team</li>
<li>Writing and communications</li>
<li>Collaborating with others</li>
</ul>
<h4>$59,031 average entry-level salary</h4>
<h4>475,173 job openings</h4>
<hr />
<h4>Recommended Professional Certificate(s)</h4>
</div>
<div class="div2">
<img src="https://d3njjcbhbojbot.cloudfront.net/api/utilities/v1/imageproxy/https://images.ctfassets.net/wp1lcwdav1p1/4YgA9i6O79eZxdUK345q55/b4e7041b0f0d92e0da7d3c835e168c8f/Google-G_360x360.jpeg?auto=format%2Ccompress&dpr=1&w=30&h=30&q=40" alt="">
<a href="#"><h3>Google Project Management</h3></a>
</div>
</div>
<div class="course-card">
<img
src="https://d3njjcbhbojbot.cloudfront.net/api/utilities/v1/imageproxy/https://images.ctfassets.net/wp1lcwdav1p1/6IjLCUHULjNjXp4yoH1c4O/e01b33c6975e8ba32dd19417f5d6d3a8/Rectangle_3371-4.png?auto=format%2Ccompress&dpr=1&w=450&h=200&q=40"
alt=""
/>
<div>
<h4>Sales Development</h4>
<p>
Sales development representatives are the first point of contact for prospective customers
</p>
<h4>If you like:</h4>
<ul>
<li>Engaging with people</li>
<li>Building relationships</li>
<li>Understanding people's needs</li>
</ul>
<h4>$51,324 average entry-level salary </h4>
<h4>207,400 job openings </h4>
<hr />
<h4>Recommended Professional Certificate(s)</h4>
</div>
<div class="div2">
<img src="https://d3njjcbhbojbot.cloudfront.net/api/utilities/v1/imageproxy/https://images.ctfassets.net/wp1lcwdav1p1/4YgA9i6O79eZxdUK345q55/b4e7041b0f0d92e0da7d3c835e168c8f/Google-G_360x360.jpeg?auto=format%2Ccompress&dpr=1&w=30&h=30&q=40" alt="">
<a href="#"><h3>Google UX design</h3></a>
</div>
</div>
<div class="course-card">
<img
src="https://d3njjcbhbojbot.cloudfront.net/api/utilities/v1/imageproxy/https://images.ctfassets.net/wp1lcwdav1p1/3GRpkgshsdRrUDZHQ34gHR/5da4de7fe0de0dfae6a52a334c009b98/Rectangle_3371-3.png?auto=format%2Ccompress&dpr=1&w=450&h=200&q=40"
alt=""
/>
<div>
<h4>Social Media</h4>
<p>
Social media specialists establish, build, and manage a company’s social media
</p>
<h4>If you like:</h4>
<ul>
<li>Engaging with people</li>
<li>Following trends</li>
<li>Thinking creatively</li>
</ul>
<h4>$56,443 average entry-level salary</h4>
<h4>30,937 job openings ¹</h4>
<hr />
<h4>Recommended Professional Certificate(s)</h4>
</div>
<div class="div2">
<img src="https://d3njjcbhbojbot.cloudfront.net/api/utilities/v1/imageproxy/https://images.ctfassets.net/wp1lcwdav1p1/2sh0mmfJq2dzCwBELHvPBD/a5b3ceddb84147d46cc26da5bf7516c2/Meta_lockup_positive_primary_RGB.png?auto=format%2Ccompress&dpr=1&w=30&h=30&q=40" alt="">
<a href="#"><h3>Meta Social Media Marketing</h3></a>
</div>
</div>
<div class="course-card">
<img
src="https://d3njjcbhbojbot.cloudfront.net/api/utilities/v1/imageproxy/https://images.ctfassets.net/wp1lcwdav1p1/6fa8AznUJX75vC6fJZ4tkD/128b9bd8916d7814aaef2086d5aceaa6/Rectangle_3371-5.png?auto=format%2Ccompress&dpr=1&w=450&h=200&q=40"
alt=""
/>
<div>
<h4>Cloud Development</h4>
<p>
Cloud developers analyze customer needs and design systems and solutions for the cloud
</p>
<h4>If you like:</h4>
<ul>
<li>Managing projects</li>
<li>Maintaining databases</li>
<li>New technology</li>
</ul>
<h4>$81,312 average entry-level salary ¹</h4>
<h4>92,243 job openings ¹</h4>
<hr />
<h4>Recommended Professional Certificate(s)</h4>
</div>
<div class="div2">
<img src="https://d3njjcbhbojbot.cloudfront.net/api/utilities/v1/imageproxy/https://images.ctfassets.net/wp1lcwdav1p1/4vAVJWwZSCKeuHxYWBaRkN/a9d7a092b38dc09126140b9600f5d66e/PC-Hub-IBM.png?auto=format%2Ccompress&dpr=1&w=30&h=30&q=40" alt="">
<a href="#"><h3>IBM Full Stack Cloud development</h3></a>
</div>
</div>
<div class="course-card">
<img
src="https://d3njjcbhbojbot.cloudfront.net/api/utilities/v1/imageproxy/https://images.ctfassets.net/wp1lcwdav1p1/5oUOR5cnKHyXpTkW5ldBPJ/9e8b4ac508546f04143eda9d83a4d052/UX_Design.png?auto=format%2Ccompress&dpr=1&w=450&h=200&q=40"
alt=""
/>
<div>
<h4>UX Design</h4>
<p>
UX designers make digital and physical products easier and more
enjoyable to use
</p>
<h4>If you like:</h4>
<ul>
<li>Understanding people</li>
<li>Thinking creatively</li>
<li>Solving problems</li>
</ul>
<h4>$58,600 average entry-level salary</h4>
<h4>113,786 job openings</h4>
<hr />
<h4>Recommended Professional Certificate(s)</h4>
</div>
<div class="div2">
<img src="https://d3njjcbhbojbot.cloudfront.net/api/utilities/v1/imageproxy/https://images.ctfassets.net/wp1lcwdav1p1/4YgA9i6O79eZxdUK345q55/b4e7041b0f0d92e0da7d3c835e168c8f/Google-G_360x360.jpeg?auto=format%2Ccompress&dpr=1&w=30&h=30&q=40" alt="">
<a href="#"><h3>Google UX design</h3></a>
</div>
</div>
<div class="course-card">
<img
src="https://d3njjcbhbojbot.cloudfront.net/api/utilities/v1/imageproxy/https://images.ctfassets.net/wp1lcwdav1p1/UkcT7vWUFEPlh6mQ1mcnT/d10f77261104d18118b9dc9fc95a876d/Rectangle_3371-1.png?auto=format%2Ccompress&dpr=1&w=450&h=200&q=40"
alt=""
/>
<div>
<h4>Cybersecurity</h4>
<p>
Cybersecurity analysts develop strategies to protect organizations
from cyber-attacks and disruptions
</p>
<h4>If you like:</h4>
<ul>
<li>Problem solving</li>
<li>Technical challenges</li>
<li>Attention to detail</li>
</ul>
<h4>$69,897 average entry-level salary</h4>
<h4>144,682 job openings</h4>
<hr />
<h4>Recommended Professional Certificate(s)</h4>
</div>
<div class="div2">
<img src="https://d3njjcbhbojbot.cloudfront.net/api/utilities/v1/imageproxy/https://images.ctfassets.net/wp1lcwdav1p1/4vAVJWwZSCKeuHxYWBaRkN/a9d7a092b38dc09126140b9600f5d66e/PC-Hub-IBM.png?auto=format%2Ccompress&dpr=1&w=30&h=30&q=40" alt="">
<a href="#"><h3>IBM cybersecurity Analyst</h3></a>
</div>
</div>
<div class="course-card">
<img
src="https://d3njjcbhbojbot.cloudfront.net/api/utilities/v1/imageproxy/https://images.ctfassets.net/wp1lcwdav1p1/3nCxc2e5XSL7YFywiYAQrK/01b32ced65312f397bc0568af443fc2c/Data_Science.png?auto=format%2Ccompress&dpr=1&w=450&h=200&q=40"
alt=""
/>
<div>
<h4>Data Science</h4>
<p>
Data scientists extract and analyze data to make informed business
decisions
</p>
<h4>If you like:</h4>
<ul>
<li>Working with numbers</li>
<li>Intellectual curiosity</li>
<li>Writing and communications</li>
</ul>
<h4>$103,823 average entry-level salary</h4>
<h4>364,000 job openings</h4>
<hr />
<h4>Recommended Professional Certificate(s)</h4>
</div>
<div class="div2">
<img src="https://d3njjcbhbojbot.cloudfront.net/api/utilities/v1/imageproxy/https://images.ctfassets.net/wp1lcwdav1p1/4vAVJWwZSCKeuHxYWBaRkN/a9d7a092b38dc09126140b9600f5d66e/PC-Hub-IBM.png?auto=format%2Ccompress&dpr=1&w=30&h=30&q=40" alt="">
<a href="#"><h3>IBM Data Analyst</h3></a>
</div>
</div>
<div class="course-card">
<img
src="https://d3njjcbhbojbot.cloudfront.net/api/utilities/v1/imageproxy/https://images.ctfassets.net/wp1lcwdav1p1/5OhialEobMyyKVgzLtF5D6/30a672dede9ffd1a9d4f63ba4bcdfde9/5.png?auto=format%2Ccompress&dpr=1&w=450&h=200&q=40"
alt=""
/>
<div>
<h4>Cybersecurity</h4>
<p>
Cybersecurity analysts develop strategies to protect organizations
from cyber-attacks and disruptions
</p>
<h4>If you like:</h4>
<ul>
<li>Problem solving</li>
<li>Technical challenges</li>
<li>Attention to detail</li>
</ul>
<h4>$69,897 average entry-level salary</h4>
<h4>144,682 job openings</h4>
<hr />
<h4>Recommended Professional Certificate(s)</h4>
</div>
<div class="div2">
<img src="https://d3njjcbhbojbot.cloudfront.net/api/utilities/v1/imageproxy/https://images.ctfassets.net/wp1lcwdav1p1/4YgA9i6O79eZxdUK345q55/b4e7041b0f0d92e0da7d3c835e168c8f/Google-G_360x360.jpeg?auto=format%2Ccompress&dpr=1&w=30&h=30&q=40" alt="">
<a href="#"><h3>Google UX design</h3></a>
</div>
</div>
</div>
</div>
<!--==================- Professional Certificate success stories Part =========-->
<!-- ============== BAnner 3 ===================== -->
<div id="banner3">
<div id="left">
<img src="https://d3njjcbhbojbot.cloudfront.net/api/utilities/v1/imageproxy/https://images.ctfassets.net/wp1lcwdav1p1/6zQGfjpZubcZH7jBxHICu1/c7b464e51e5b7916d47eeb6d9f554ae5/girl-with-the-computer.jpeg?auto=format%2Ccompress&dpr=1&w=480&h=380&q=40" alt="">
</div>
<div id="right">
<p>Finished a Professional Certificate?</p>
<h2>Get resources and support to guide you through <br>the job search process.</h2>
<h3>Showcase your skills</h3>
<p> Present real-world projects to potential employers</p>
<h3>Enhance your resume</h3>
<p>Get support to build a standout resume and LinkedIn profile.</p>
<h3>Ace your interview</h3>
<p>Practice and improve your interview skills with virtual feedback.</p>
</div>
</div>
<!-- <================ Professional Certificates part slider part=======================> -->
<h1 id="h1">Explore our career-changing Professional Certificates
</h1>
<section class="product">
<button class="pre-btn"><img src="./components/images/arrow.png" alt=""></button>
<button class="nxt-btn"><img src="./components/images/arrow.png" alt=""></button>
<div class="product-container" id="firstslide">
<div class="product-card">
<img src="./components/images/img10.png" alt="">
</div>
<div class="product-card">
<img src="./components/images/img4.png" alt="">
</div>
<div class="product-card">
<img src="./components/images/img3.png" alt="">
</div>
<div class="product-card">
<img src="./components/images/img1.png" alt="">
</div>
<div class="product-card">
<img src="./components/images/img5.png" alt="">
</div>
<div class="product-card">
<img src="./components/images/img6.png" alt="">
</div>
<div class="product-card">
<img src="./components/images/img7.png" alt="">
</div>
<div class="product-card">
<img src="./components/images/img8.png" alt="">
</div>
<div class="product-card">
<img src="./components/images/img9.png" alt="">
</div>
<div class="product-card">
<img src="./components/images/img10.png" alt="">
</div>
<div class="product-card">
<img src="./components/images/img11.png" alt="">
</div>
<div class="product-card">
<img src="./components/images/img12.png" alt="">
</div>
</div>
</section>
<div class="dots" >
<div class="dots1"id="1dots"></div>
<div id="2dots"></div>
<div id="3dots"></div>
</div>
<!-- <========== End of Slider part======================> -->
</section>
<!-- <<================ FAQ PART =======================================> -->
<section id="faq-section">
<div class="faq">
<div class="question">
<i class="material-icons"> arrow_forward_ios </i>
<p>How much does a Professional Certificate cost?</p>
</div>
<div class="answer">
<p>
In the U.S. and Canada, Professional Certificates start at $39/month
after the initial 7 day free trial period. Price can vary by country
and will be adjusted for your location at checkout.
</p>
</div>
</div>
<div class="faq">
<div class="question">
<i class="material-icons"> arrow_forward_ios </i>
<p>How long does it take to complete a Professional Certificate?</p>
</div>
<div class="answer">
<p>
Time to complete a Professional Certificate can vary by subject or
how you choose to learn at your own pace. On average, a Professional
Certificate can be completed in less than 6 months at 10 hours per
week.
</p>
</div>
</div>
<div class="faq">
<div class="question">
<i class="material-icons"> arrow_forward_ios </i>
<p>What resources will be available for the job search process?</p>
</div>
<div class="answer">
<p>
In addition to hands-on projects designed to showcase your
experience, you'll get access to a 5-step job search guide to help
navigate the process. You’ll also get support to build a standout
resume and LinkedIn profile, virtual interview practice for your
specific industry, job, and experience level, and access to the
Professional Certificate Alumni Community to network with other
career switchers.
</p>
</div>
</div>
<div class="faq">
<div class="question">
<i class="material-icons"> arrow_forward_ios </i>
<p>What background knowledge is necessary</p>
</div>
<div class="answer">
<p>
None! Whether you’re completely new to the job field or have had
some experience, an entry-level Professional Certificate doesn’t
require any background knowledge.
</p>
</div>
</div>
<div class="faq">
<div class="question">
<i class="material-icons"> arrow_forward_ios </i>
<p>Who designed the Professional Certificates on Coursera?</p>
</div>
<div class="answer">
<p>
Professional Certificates on Coursera were designed by subject
matter experts at top companies. They were created to equip learners
with theoretical and practical knowledge and real-life
problem-solving skills to be successful in an entry-level job.
</p>
</div>
</div>
<div class="faq">
<div class="question">
<i class="material-icons"> arrow_forward_ios </i>
<p>Are Professional Certificates 100% online?</p>
</div>
<div class="answer">
<p>
Professional Certificates are completely online. You can access your
instructional videos, readings, and assignments anytime and anywhere
via the web or your mobile device.
</p>
</div>
</div>
</section>
<div id="footer"></div>
</body>
</html>
<script src="https://code.iconify.design/2/2.1.2/iconify.min.js"></script>
<script src="./Script/slide.js"></script>
<script src="./FindNewCareer.js"></script>
<script type="module">
import footer from "./footer/footer.js";
console.log("footer:",footer);
let foot = document.getElementById("footer")
foot.innerHTML = footer();
</script>