├── assets ├── css │ ├── reset.css │ └── styles.css ├── icons │ ├── chevron-left.svg │ ├── chevron-right.svg │ ├── code.svg │ ├── facebook.svg │ ├── instagram.svg │ ├── linkedin.svg │ ├── list.svg │ ├── open-quotes.svg │ ├── play.svg │ ├── speaker.svg │ ├── star.svg │ └── twitter.svg └── img │ ├── blog-1.jpg │ ├── blog-2.jpg │ ├── blog-3.jpg │ ├── course-1.jpg │ ├── course-2.jpg │ ├── course-3.jpg │ ├── feature-1.jpg │ ├── feature-2.jpg │ ├── feature-3.jpg │ ├── feedback-avatar-1.jpg │ ├── feedback-avatar-2.jpg │ ├── feedback-avatar-3.jpg │ ├── hero-img.jpg │ ├── logo-white.svg │ └── logo.svg └── index.html /assets/css/reset.css: -------------------------------------------------------------------------------- 1 | /* http://meyerweb.com/eric/tools/css/reset/ 2 | v2.0 | 20110126 3 | License: none (public domain) 4 | */ 5 | 6 | html, 7 | body, 8 | div, 9 | span, 10 | applet, 11 | object, 12 | iframe, 13 | h1, 14 | h2, 15 | h3, 16 | h4, 17 | h5, 18 | h6, 19 | p, 20 | blockquote, 21 | pre, 22 | a, 23 | abbr, 24 | acronym, 25 | address, 26 | big, 27 | cite, 28 | code, 29 | del, 30 | dfn, 31 | em, 32 | img, 33 | ins, 34 | kbd, 35 | q, 36 | s, 37 | samp, 38 | small, 39 | strike, 40 | strong, 41 | sub, 42 | sup, 43 | tt, 44 | var, 45 | b, 46 | u, 47 | i, 48 | center, 49 | dl, 50 | dt, 51 | dd, 52 | ol, 53 | ul, 54 | li, 55 | fieldset, 56 | form, 57 | label, 58 | legend, 59 | table, 60 | caption, 61 | tbody, 62 | tfoot, 63 | thead, 64 | tr, 65 | th, 66 | td, 67 | article, 68 | aside, 69 | canvas, 70 | details, 71 | embed, 72 | figure, 73 | figcaption, 74 | footer, 75 | header, 76 | hgroup, 77 | menu, 78 | nav, 79 | output, 80 | ruby, 81 | section, 82 | summary, 83 | time, 84 | mark, 85 | audio, 86 | video { 87 | margin: 0; 88 | padding: 0; 89 | border: 0; 90 | font-size: 100%; 91 | font: inherit; 92 | vertical-align: baseline; 93 | } 94 | /* HTML5 display-role reset for older browsers */ 95 | article, 96 | aside, 97 | details, 98 | figcaption, 99 | figure, 100 | footer, 101 | header, 102 | hgroup, 103 | menu, 104 | nav, 105 | section { 106 | display: block; 107 | } 108 | body { 109 | line-height: 1; 110 | } 111 | ol, 112 | ul { 113 | list-style: none; 114 | } 115 | blockquote, 116 | q { 117 | quotes: none; 118 | } 119 | blockquote:before, 120 | blockquote:after, 121 | q:before, 122 | q:after { 123 | content: ""; 124 | content: none; 125 | } 126 | table { 127 | border-collapse: collapse; 128 | border-spacing: 0; 129 | } 130 | -------------------------------------------------------------------------------- /assets/css/styles.css: -------------------------------------------------------------------------------- 1 | * { 2 | box-sizing: border-box; 3 | } 4 | 5 | :root { 6 | --primary-color: #ffb900; 7 | --font-heading: Sen, sans-serif; 8 | } 9 | 10 | html { 11 | font-size: 62.5%; 12 | } 13 | 14 | body { 15 | font-size: 1.6rem; 16 | font-family: "Poppins", sans-serif; 17 | } 18 | 19 | /* Common */ 20 | a { 21 | text-decoration: none; 22 | } 23 | 24 | .btn { 25 | display: inline-block; 26 | min-width: 118px; 27 | padding: 0 16px; 28 | line-height: 50px; 29 | font-weight: 600; 30 | font-size: 1.6rem; 31 | text-align: center; 32 | color: #ffffff; 33 | background: #171100; 34 | border-radius: 999px; 35 | } 36 | 37 | .btn:hover { 38 | opacity: 0.9; 39 | cursor: pointer; 40 | } 41 | 42 | .heading { 43 | font-family: var(--font-heading); 44 | font-weight: 700; 45 | letter-spacing: -0.02em; 46 | color: #171100; 47 | } 48 | 49 | .heading.lv1 { 50 | font-size: 5.8rem; 51 | line-height: 1.17; 52 | } 53 | 54 | .heading.lv2 { 55 | font-size: 3.8rem; 56 | line-height: 1.26; 57 | } 58 | 59 | .main-content { 60 | width: 1170px; 61 | max-width: calc(100% - 48px); 62 | margin-left: auto; 63 | margin-right: auto; 64 | } 65 | 66 | .line-clamp { 67 | display: -webkit-box; 68 | -webkit-line-clamp: var(--line-clamp, 1); 69 | -webkit-box-orient: vertical; 70 | overflow: hidden; 71 | } 72 | 73 | .line-clamp.line-2 { 74 | --line-clamp: 2; 75 | } 76 | 77 | .break-all { 78 | word-break: break-all; 79 | } 80 | 81 | /* Header */ 82 | .header { 83 | background: #fffcf4; 84 | } 85 | 86 | .header.fixed { 87 | position: sticky; 88 | top: -28px; 89 | z-index: 1; 90 | } 91 | 92 | .header .body { 93 | display: flex; 94 | align-items: center; 95 | padding: 36px 0 8px; 96 | } 97 | 98 | .nav { 99 | margin-left: auto; 100 | } 101 | 102 | .nav ul { 103 | display: flex; 104 | } 105 | 106 | .nav a { 107 | position: relative; 108 | padding: 8px 21px; 109 | font-size: 1.6rem; 110 | color: #5f5b53; 111 | } 112 | 113 | .nav a:hover, 114 | .nav li.active a { 115 | text-shadow: 1px 0 0 currentColor; 116 | color: #171100; 117 | } 118 | 119 | .nav li.active a::after { 120 | position: absolute; 121 | left: 21px; 122 | bottom: 6px; 123 | content: ""; 124 | display: block; 125 | width: 12px; 126 | height: 2px; 127 | background: #171100; 128 | border-radius: 1px; 129 | } 130 | 131 | .header .sign-up-btn { 132 | min-width: 144px; 133 | } 134 | 135 | .header .action { 136 | margin-left: 49px; 137 | } 138 | 139 | /* Hero */ 140 | .hero { 141 | padding: 56px 0 65px; 142 | background: #fffcf4; 143 | } 144 | 145 | .hero .body { 146 | display: flex; 147 | } 148 | 149 | /* Hero left */ 150 | .hero .media-block { 151 | position: relative; 152 | width: 48%; 153 | } 154 | 155 | .hero .media-block .img { 156 | display: block; 157 | width: 470px; 158 | height: 685px; 159 | object-fit: cover; 160 | border-radius: 20px; 161 | } 162 | 163 | .hero-summary { 164 | position: absolute; 165 | right: 0; 166 | bottom: 48px; 167 | width: 270px; 168 | padding: 24px; 169 | background: #ffffff; 170 | box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.05); 171 | border-radius: 12px; 172 | } 173 | 174 | .hero-summary .item { 175 | display: flex; 176 | align-items: center; 177 | } 178 | 179 | .hero-summary .item + .item { 180 | margin-top: 22px; 181 | } 182 | 183 | .hero-summary .icon { 184 | width: 48px; 185 | height: 48px; 186 | border-radius: 50%; 187 | display: flex; 188 | align-items: center; 189 | justify-content: center; 190 | background: #fff9e8; 191 | } 192 | 193 | .hero-summary .item:nth-of-type(2) .icon { 194 | background: #fcefff; 195 | } 196 | 197 | .hero-summary .item:nth-of-type(3) .icon { 198 | background: #ebeaff; 199 | } 200 | 201 | .hero-summary .info { 202 | margin-left: 16px; 203 | } 204 | 205 | .hero-summary .label { 206 | font-size: 1.4rem; 207 | line-height: 1.86; 208 | color: #5f5b53; 209 | } 210 | 211 | .hero-summary .title { 212 | font-weight: 600; 213 | font-size: 1.8rem; 214 | line-height: 1.67; 215 | color: #171100; 216 | } 217 | 218 | /* Hero right */ 219 | .hero .content-block { 220 | width: 52%; 221 | padding: 64px 0 0 130px; 222 | } 223 | 224 | .hero .desc { 225 | margin-top: 22px; 226 | font-size: 1.8rem; 227 | line-height: 1.67; 228 | color: #5f5b53; 229 | } 230 | 231 | .hero .cta-group { 232 | display: flex; 233 | align-items: center; 234 | margin: 38px 0 48px; 235 | } 236 | 237 | .hero-cta { 238 | min-width: 180px; 239 | line-height: 64px; 240 | background-color: var(--primary-color); 241 | } 242 | 243 | .hero .watch-video { 244 | display: flex; 245 | align-items: center; 246 | margin-left: 28px; 247 | border: none; 248 | background: transparent; 249 | cursor: pointer; 250 | } 251 | 252 | .hero .watch-video .icon { 253 | display: flex; 254 | align-items: center; 255 | justify-content: center; 256 | width: 40px; 257 | height: 40px; 258 | border-radius: 50%; 259 | background: #ffffff; 260 | box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.07); 261 | } 262 | 263 | .hero .watch-video span { 264 | margin-left: 14px; 265 | font-weight: 600; 266 | font-size: 1.8rem; 267 | line-height: 1.67; 268 | color: #171100; 269 | } 270 | 271 | .hero .stats { 272 | margin: 8px 0 0 -28px; 273 | } 274 | 275 | .hero .stats strong { 276 | padding: 0 8px 0 28px; 277 | font-family: var(--font-heading); 278 | font-weight: 700; 279 | font-size: 4.4rem; 280 | line-height: 1.23; 281 | color: #171100; 282 | } 283 | 284 | /* Popular */ 285 | .popular { 286 | padding: 65px 0; 287 | margin-top: 135px; 288 | } 289 | 290 | .popular-top { 291 | display: flex; 292 | align-items: center; 293 | justify-content: space-between; 294 | } 295 | 296 | .popular-top .desc { 297 | margin-top: 16px; 298 | width: 458px; 299 | font-size: 1.8rem; 300 | line-height: 1.67; 301 | color: #5f5b53; 302 | } 303 | 304 | .popular-top .controls { 305 | display: flex; 306 | gap: 18px; 307 | } 308 | 309 | .popular-top .control-btn { 310 | display: flex; 311 | align-items: center; 312 | justify-content: center; 313 | width: 40px; 314 | height: 40px; 315 | border-radius: 50%; 316 | color: var(--primary-color); 317 | border: 1px solid var(--primary-color); 318 | background: transparent; 319 | } 320 | 321 | .popular-top .control-btn:hover { 322 | color: #fff; 323 | background: var(--primary-color); 324 | cursor: pointer; 325 | } 326 | 327 | .popular .course-list { 328 | display: flex; 329 | gap: 30px; 330 | margin-top: 55px; 331 | } 332 | 333 | .popular .course-item { 334 | flex: 1; 335 | background: #ffffff; 336 | border: 1px solid #e2dfda; 337 | border-radius: 12px; 338 | } 339 | 340 | .popular .course-item:hover { 341 | border-color: transparent; 342 | box-shadow: 0px 18px 36px rgba(0, 0, 0, 0.05); 343 | } 344 | 345 | .popular .course-item .thumb { 346 | width: calc(100% + 2px); 347 | height: 278px; 348 | margin: -1px; 349 | object-fit: cover; 350 | border-radius: 12px 12px 0px 0px; 351 | } 352 | 353 | .popular .course-item .info { 354 | padding: 16px 22px 22px; 355 | } 356 | 357 | .popular .course-item .rating, 358 | .popular .course-item .foot, 359 | .popular .course-item .head { 360 | display: flex; 361 | align-items: center; 362 | justify-content: space-between; 363 | } 364 | 365 | .popular .course-item .title a { 366 | padding-right: 6px; 367 | font-weight: 600; 368 | font-size: 1.8rem; 369 | line-height: 1.67; 370 | color: #171100; 371 | } 372 | 373 | .popular .rating .value { 374 | margin-left: 6px; 375 | font-size: 1.6rem; 376 | line-height: 1.75; 377 | color: #fea31b; 378 | } 379 | 380 | .popular .course-item .desc { 381 | margin-top: 6px; 382 | font-size: 1.4rem; 383 | line-height: 1.86; 384 | color: #5f5b53; 385 | } 386 | 387 | .popular .course-item .foot { 388 | margin-top: 12px; 389 | } 390 | 391 | .popular .course-item .price { 392 | font-weight: 600; 393 | font-size: 1.8rem; 394 | line-height: 1.67; 395 | color: #171100; 396 | } 397 | 398 | .popular .course-item .book-btn { 399 | border: none; 400 | } 401 | 402 | .popular .course-item .book-btn:hover { 403 | color: #fff; 404 | background: var(--primary-color); 405 | } 406 | 407 | /* Feedback */ 408 | .feedback { 409 | margin-top: 135px; 410 | padding: 96px 0; 411 | background: #2e2100; 412 | } 413 | 414 | .feedback-list { 415 | display: flex; 416 | overflow: hidden; 417 | } 418 | 419 | .feedback-item { 420 | display: flex; 421 | width: 100%; 422 | flex-shrink: 0; 423 | } 424 | 425 | .feedback-item .avatar { 426 | width: 72px; 427 | height: 72px; 428 | border-radius: 50%; 429 | object-fit: cover; 430 | } 431 | 432 | .feedback-item .info .title { 433 | font-family: var(--font-heading); 434 | margin-top: 18px; 435 | font-weight: 700; 436 | font-size: 2.4rem; 437 | line-height: 1.42; 438 | color: #f7f7f7; 439 | } 440 | 441 | .feedback-item .info .desc { 442 | margin-top: 4px; 443 | font-size: 1.4rem; 444 | line-height: 1.86; 445 | color: #bfbcb3; 446 | } 447 | 448 | .feedback-item .dots { 449 | display: flex; 450 | margin-top: 28px; 451 | } 452 | 453 | .feedback-item .dot { 454 | margin-right: 6px; 455 | width: 6px; 456 | height: 6px; 457 | border-radius: 50%; 458 | background: #634700; 459 | cursor: pointer; 460 | } 461 | 462 | .feedback-item .dot.active { 463 | background: #ffb900; 464 | cursor: default; 465 | } 466 | 467 | .feedback-item .content { 468 | width: 66%; 469 | margin-left: auto; 470 | } 471 | 472 | .feedback-item blockquote { 473 | margin-left: 30px; 474 | font-style: italic; 475 | font-size: 2.6rem; 476 | line-height: 1.54; 477 | color: #ffffff; 478 | } 479 | 480 | /* Features */ 481 | .features { 482 | margin-top: 135px; 483 | padding: 65px 0; 484 | } 485 | 486 | .features .body { 487 | display: flex; 488 | justify-content: space-between; 489 | } 490 | 491 | .features .images { 492 | display: flex; 493 | gap: 0 30px; 494 | } 495 | 496 | .features .images img { 497 | width: 270px; 498 | height: 404px; 499 | border-radius: 16px; 500 | object-fit: cover; 501 | } 502 | 503 | .features img.lower { 504 | margin-top: 34px; 505 | } 506 | 507 | .features .content { 508 | width: 41%; 509 | display: flex; 510 | flex-direction: column; 511 | align-items: flex-start; 512 | justify-content: center; 513 | } 514 | 515 | .features .desc { 516 | margin-top: 16px; 517 | font-size: 1.6rem; 518 | line-height: 1.75; 519 | color: #5f5b53; 520 | } 521 | 522 | .features .content .cta-btn { 523 | margin-top: 32px; 524 | min-width: 137px; 525 | color: #fff; 526 | background: var(--primary-color); 527 | } 528 | 529 | .features-2nd { 530 | margin-top: 70px; 531 | } 532 | 533 | .features-2nd .body { 534 | flex-direction: row-reverse; 535 | } 536 | 537 | .features-2nd .content { 538 | width: 49%; 539 | } 540 | 541 | .features-2nd .images img { 542 | width: 470px; 543 | height: 440px; 544 | } 545 | 546 | /* Blog */ 547 | .blog { 548 | margin-top: 135px; 549 | padding: 96px 0; 550 | background: #fffcf4; 551 | } 552 | 553 | .blog .blog-top { 554 | text-align: center; 555 | } 556 | 557 | .blog .blog-top .desc { 558 | margin: 16px auto auto; 559 | width: 448px; 560 | font-size: 1.6rem; 561 | line-height: 1.75; 562 | color: #696262; 563 | } 564 | 565 | .blog .blog-list { 566 | display: flex; 567 | gap: 30px; 568 | margin-top: 55px; 569 | overflow: hidden; 570 | } 571 | 572 | .blog .item { 573 | flex-shrink: 0; 574 | width: calc(33.33% - 20px); 575 | background: #ffffff; 576 | border-radius: 16px; 577 | } 578 | 579 | .blog .item:hover { 580 | box-shadow: 0px 16px 32px rgba(0, 0, 0, 0.05); 581 | } 582 | 583 | .blog .item .thumb { 584 | width: 100%; 585 | height: 250px; 586 | object-fit: cover; 587 | border-radius: 16px 16px 0px 0px; 588 | } 589 | 590 | .blog .item .info { 591 | padding: 20px 20px 28px; 592 | } 593 | 594 | .blog .item .date { 595 | position: relative; 596 | display: inline-flex; 597 | align-items: center; 598 | padding-bottom: 12px; 599 | font-size: 1.4rem; 600 | line-height: 1.86; 601 | color: #5f5b53; 602 | } 603 | 604 | .blog .item .date::before { 605 | content: ""; 606 | display: inline-block; 607 | width: 6px; 608 | height: 6px; 609 | margin-right: 4px; 610 | border-radius: 50%; 611 | background: var(--primary-color); 612 | } 613 | 614 | .blog .item .date::after { 615 | position: absolute; 616 | left: 0; 617 | right: -27px; 618 | bottom: 0; 619 | content: ""; 620 | display: inline-block; 621 | height: 1px; 622 | background: #e2dfda; 623 | border-radius: 0.5px; 624 | } 625 | 626 | .blog .item .title a { 627 | display: inline-block; 628 | margin: 12px 0; 629 | font-weight: 600; 630 | font-size: 1.6rem; 631 | line-height: 1.75; 632 | color: #171100; 633 | } 634 | 635 | .blog .item .btn { 636 | font-size: 1.4rem; 637 | } 638 | 639 | .blog .item .btn:hover { 640 | background: var(--primary-color); 641 | } 642 | 643 | .blog .dots { 644 | display: flex; 645 | gap: 6px; 646 | justify-content: center; 647 | margin-top: 38px; 648 | } 649 | 650 | .blog .dot { 651 | width: 6px; 652 | height: 6px; 653 | border-radius: 50%; 654 | background: #5f5b53; 655 | cursor: pointer; 656 | } 657 | 658 | .blog .dot.active { 659 | cursor: default; 660 | background: var(--primary-color); 661 | } 662 | 663 | /* Footer */ 664 | .footer { 665 | padding: 96px 135px 0; 666 | background: #2e2100; 667 | } 668 | 669 | .footer .row { 670 | display: flex; 671 | padding-bottom: 38px; 672 | border-bottom: 1px solid #59554b; 673 | } 674 | 675 | .footer .row .column { 676 | width: 21.6%; 677 | } 678 | 679 | .footer .row .column:first-child { 680 | width: 35%; 681 | } 682 | 683 | .footer .desc { 684 | margin-top: 18px; 685 | max-width: 267px; 686 | font-size: 1.4rem; 687 | line-height: 1.86; 688 | color: #bfbcb2; 689 | } 690 | 691 | .footer .socials { 692 | display: flex; 693 | gap: 18px; 694 | margin-top: 18px; 695 | } 696 | 697 | .footer .title { 698 | display: inline-block; 699 | padding: 0 48px 14px 0; 700 | border-bottom: 1px solid #59554b; 701 | font-weight: 600; 702 | font-size: 1.6rem; 703 | line-height: 1.75; 704 | color: #ffffff; 705 | } 706 | 707 | .footer .list { 708 | margin-top: 28px; 709 | } 710 | 711 | .footer .list a { 712 | display: inline-block; 713 | margin-bottom: 12px; 714 | font-size: 1.4rem; 715 | line-height: 1.86; 716 | color: #bfbcb2; 717 | } 718 | 719 | .footer .list li:last-child a { 720 | margin-bottom: 0; 721 | } 722 | 723 | .footer .list strong { 724 | font-weight: 600; 725 | color: #ffffff; 726 | } 727 | 728 | .footer .copyright { 729 | padding: 28px 0; 730 | } 731 | 732 | .footer .copyright p { 733 | font-size: 1.4rem; 734 | line-height: 1.86; 735 | text-align: center; 736 | color: #807d74; 737 | } 738 | -------------------------------------------------------------------------------- /assets/icons/chevron-left.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/icons/chevron-right.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /assets/icons/code.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /assets/icons/facebook.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /assets/icons/instagram.svg: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /assets/icons/linkedin.svg: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /assets/icons/list.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /assets/icons/open-quotes.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /assets/icons/play.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /assets/icons/speaker.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /assets/icons/star.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /assets/icons/twitter.svg: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /assets/img/blog-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sondnpt00343/htmlcss-project-02/e96c9a840fb3e6656e93e28fbaf190678a9ff652/assets/img/blog-1.jpg -------------------------------------------------------------------------------- /assets/img/blog-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sondnpt00343/htmlcss-project-02/e96c9a840fb3e6656e93e28fbaf190678a9ff652/assets/img/blog-2.jpg -------------------------------------------------------------------------------- /assets/img/blog-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sondnpt00343/htmlcss-project-02/e96c9a840fb3e6656e93e28fbaf190678a9ff652/assets/img/blog-3.jpg -------------------------------------------------------------------------------- /assets/img/course-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sondnpt00343/htmlcss-project-02/e96c9a840fb3e6656e93e28fbaf190678a9ff652/assets/img/course-1.jpg -------------------------------------------------------------------------------- /assets/img/course-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sondnpt00343/htmlcss-project-02/e96c9a840fb3e6656e93e28fbaf190678a9ff652/assets/img/course-2.jpg -------------------------------------------------------------------------------- /assets/img/course-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sondnpt00343/htmlcss-project-02/e96c9a840fb3e6656e93e28fbaf190678a9ff652/assets/img/course-3.jpg -------------------------------------------------------------------------------- /assets/img/feature-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sondnpt00343/htmlcss-project-02/e96c9a840fb3e6656e93e28fbaf190678a9ff652/assets/img/feature-1.jpg -------------------------------------------------------------------------------- /assets/img/feature-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sondnpt00343/htmlcss-project-02/e96c9a840fb3e6656e93e28fbaf190678a9ff652/assets/img/feature-2.jpg -------------------------------------------------------------------------------- /assets/img/feature-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sondnpt00343/htmlcss-project-02/e96c9a840fb3e6656e93e28fbaf190678a9ff652/assets/img/feature-3.jpg -------------------------------------------------------------------------------- /assets/img/feedback-avatar-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sondnpt00343/htmlcss-project-02/e96c9a840fb3e6656e93e28fbaf190678a9ff652/assets/img/feedback-avatar-1.jpg -------------------------------------------------------------------------------- /assets/img/feedback-avatar-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sondnpt00343/htmlcss-project-02/e96c9a840fb3e6656e93e28fbaf190678a9ff652/assets/img/feedback-avatar-2.jpg -------------------------------------------------------------------------------- /assets/img/feedback-avatar-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sondnpt00343/htmlcss-project-02/e96c9a840fb3e6656e93e28fbaf190678a9ff652/assets/img/feedback-avatar-3.jpg -------------------------------------------------------------------------------- /assets/img/hero-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sondnpt00343/htmlcss-project-02/e96c9a840fb3e6656e93e28fbaf190678a9ff652/assets/img/hero-img.jpg -------------------------------------------------------------------------------- /assets/img/logo-white.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /assets/img/logo.svg: -------------------------------------------------------------------------------- 1 | 5 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |20 Courses
83 |UI/UX Design
84 |20 Courses
95 |Development
96 |30 Courses
107 |Marketing
108 |119 | Build new skills for that “this is my year” 120 | feeling with courses, certificates, and degrees 121 | from world-class universities and companies. 122 |
123 |Recent engagement
138 |139 | 50K Students 140 | 70+ Courses 141 |
142 |154 | Build new skills with new trendy courses and 155 | shine for the next future career. 156 |
157 |224 | Get the best course, gain knowledge and 225 | shine for your future career. 226 |
227 |265 | Get the best course, gain knowledge and 266 | shine for your future career. 267 |
268 |306 | Get the best course, gain knowledge and 307 | shine for your future career. 308 |
309 |Peter Moor
334 |Student of Web Design
335 |348 | Not only does my resume look 349 | impressive—filled with the names and logos 350 | of world-class institutions—but these 351 | certificates also bring me closer to my 352 | career goals by validating the skills I've 353 | learned." 354 |355 |
Peter Moor
367 |Student of Web Design
368 |381 | Not only does my resume look 382 | impressive—filled with the names and logos 383 | of world-class institutions—but these 384 | certificates also bring me closer to my 385 | career goals by validating the skills I've 386 | learned." 387 |388 |
Peter Moor
400 |Student of Web Design
401 |414 | Not only does my resume look 415 | impressive—filled with the names and logos 416 | of world-class institutions—but these 417 | certificates also bring me closer to my 418 | career goals by validating the skills I've 419 | learned." 420 |421 |
447 | 87% of people learning for professional 448 | development report career benefits like getting 449 | a promotion, a raise, or starting a new career. 450 |
451 |Lesson Impact Report (2022)
452 | Sign Up 453 |474 | Take the next step toward. Join now to receive 475 | personalized and more recommendations from the 476 | full Coursera catalog. 477 |
478 | Join Now 479 |490 | Read our regular travel blog and know the latest 491 | update of tour and travel 492 |
493 |