HTMLify
index.html
Views: 4 | Author: ravi4
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 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 | <!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>SimpleBlog - Julia Walker's Personal Blog</title> <!-- - favicon --> <link rel="shortcut icon" href="./assets/images/favicon.ico" type="image/x-icon"> <!-- - 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=Inter:wght@200;300;400;500;600;700;800;900&display=swap" rel="stylesheet"> </head> <body class="light-theme"> <!-- - #HEADER --> <header> <div class="container"> <nav class="navbar"> <a href="#"> <img src="./assets/images/logo-light.svg" alt="SimpleBlog logo" width="150" class="logo-light"> <img src="./assets/images/logo-dark.svg" alt="SimpleBlog logo" width="150" class="logo-dark"> </a> <div class="btn-group"> <button class="theme-btn theme-btn-mobile light"> <ion-icon name="moon" class="moon"></ion-icon> <ion-icon name="sunny" class="sun"></ion-icon> </button> <button class="nav-menu-btn"> <ion-icon name="menu-outline"></ion-icon> </button> </div> <div class="flex-wrapper"> <ul class="desktop-nav"> <li> <a href="#" class="nav-link">Home</a> </li> <li> <a href="#" class="nav-link">About Me</a> </li> <li> <a href="#" class="nav-link">Contact</a> </li> </ul> <button class="theme-btn theme-btn-desktop light"> <ion-icon name="moon" class="moon"></ion-icon> <ion-icon name="sunny" class="sun"></ion-icon> </button> </div> <div class="mobile-nav"> <button class="nav-close-btn"> <ion-icon name="close-outline"></ion-icon> </button> <div class="wrapper"> <p class="h3 nav-title">Main Menu</p> <ul> <li class="nav-item"> <a href="#" class="nav-link">Home</a> </li> <li class="nav-item"> <a href="#" class="nav-link">About Me</a> </li> <li class="nav-item"> <a href="#" class="nav-link">Contact</a> </li> </ul> </div> <div> <p class="h3 nav-title">Topics</p> <ul> <li class="nav-item"> <a href="#" class="nav-link">Database</a> </li> <li class="nav-item"> <a href="#" class="nav-link">Accessibility</a> </li> <li class="nav-item"> <a href="#" class="nav-link">Web Performance</a> </li> </ul> </div> </div> </nav> </div> </header> <main> <!-- - #HERO SECTION --> <div class="hero"> <div class="container"> <div class="left"> <h1 class="h1"> Hi, I'm <b>Julia Walker</b>. <br>Web Developer </h1> <p class="h3"> Specialized in <abbr title="Accessibility">a11y</abbr> and Core Web Vitals </p> <div class="btn-group"> <a href="#" class="btn btn-primary">Contact Me</a> <a href="#" class="btn btn-secondary">About Me</a> </div> </div> <div class="right"> <div class="pattern-bg"></div> <div class="img-box"> <img src="./assets/images/hero.png" alt="Julia Walker" class="hero-img"> <div class="shape shape-1"></div> <div class="shape shape-2"></div> </div> </div> </div> </div> <div class="main"> <div class="container"> <!-- - BLOG SECTION --> <div class="blog"> <h2 class="h2">Latest Blog Post</h2> <div class="blog-card-group"> <div class="blog-card"> <div class="blog-card-banner"> <img src="./assets/images/blog-1.png" alt="Building microservices with Dropwizard, MongoDB & Docker" width="250" class="blog-banner-img"> </div> <div class="blog-content-wrapper"> <button class="blog-topic text-tiny">Database</button> <h3> <a href="#" class="h3"> Building microservices with Dropwizard, MongoDB & Docker </a> </h3> <p class="blog-text"> This NoSQL database oriented to documents (by documents like JSON) combines some of the features from relational databases, easy to use and the multi-platform is the best option for scale up and have fault tolerance, load balancing, map reduce, etc. </p> <div class="wrapper-flex"> <div class="profile-wrapper"> <img src="./assets/images/author.png" alt="Julia Walker" width="50"> </div> <div class="wrapper"> <a href="#" class="h4">Julia Walker</a> <p class="text-sm"> <time datetime="2022-01-17">Jan 17, 2022</time> <span class="separator"></span> <ion-icon name="time-outline"></ion-icon> <time datetime="PT3M">3 min</time> </p> </div> </div> </div> </div> <div class="blog-card"> <div class="blog-card-banner"> <img src="./assets/images/blog-2.png" alt="Fast web page loading on a $20 feature phone" width="250" class="blog-banner-img"> </div> <div class="blog-content-wrapper"> <button class="blog-topic text-tiny">Web Performance</button> <h3><a href="" class="h3">Fast web page loading on a $20 feature phone</a></h3> <p class="blog-text"> Feature phones are affordable (under $20-25), low-end devices enabling 100s of millions of users in developing countries to leverage the web. Think of them as a light version of a smart phone. </p> <div class="wrapper-flex"> <div class="profile-wrapper"> <img src="./assets/images/author.png" alt="Julia walker" width="50"> </div> <div class="wrapper"> <a href="#" class="h4">Julia Walker</a> <p class="text-sm"> <time datetime="2021-12-10">Dec 10, 2021</time> <span class="separator"></span> <ion-icon name="time-outline"></ion-icon> <time datetime="PT2M">2 min</time> </p> </div> </div> </div> </div> <div class="blog-card"> <div class="blog-card-banner"> <img src="./assets/images/blog-3.png" alt="Accessibility Tips for Web Developers" width="250" class="blog-banner-img"> </div> <div class="blog-content-wrapper"> <button class="blog-topic text-tiny">Accessibility</button> <h3><a href="" class="h3">Accessibility Tips for Web Developers</a></h3> <p class="blog-text"> It's awesome to build sites that are inclusive and accessible to everyone. There are at least six key areas of disability we can optimize for: visual, hearing, mobility, cognition, speech and neural. Many tools and resources can help here, even if you're totally new to web accessibility. </p> <div class="wrapper-flex"> <div class="profile-wrapper"> <img src="./assets/images/author.png" alt="Julia walker" width="50"> </div> <div class="wrapper"> <a href="#" class="h4">Julia Walker</a> <p class="text-sm"> <time datetime="2021-11-28">Nov 28, 2021</time> <span class="separator"></span> <ion-icon name="time-outline"></ion-icon> <time datetime="PT4M">4 min</time> </p> </div> </div> </div> </div> <div class="blog-card"> <div class="blog-card-banner"> <img src="./assets/images/blog-4.png" alt="Dynamically Securing Databases using Hashicorp Vault" width="250" class="blog-banner-img"> </div> <div class="blog-content-wrapper"> <button class="blog-topic text-tiny">Database</button> <h3><a href="" class="h3">Dynamically Securing Databases using Hashicorp Vault</a></h3> <p class="blog-text"> Nowadays, it's hard to profoundly talk about security in the IT industry, since it has to be considered on so many different levels: from securing code chunks, securing containers, up to securing complex infrastructures and defining strong authorization and authentication policies across the enterprise. </p> <div class="wrapper-flex"> <div class="profile-wrapper"> <img src="./assets/images/author.png" alt="Julia walker" width="50"> </div> <div class="wrapper"> <a href="#" class="h4">Julia Walker</a> <p class="text-sm"> <time datetime="2021-11-20">Nov 20, 2021</time> <span class="separator"></span> <ion-icon name="time-outline"></ion-icon> <time datetime="PT4M">4 min</time> </p> </div> </div> </div> </div> <div class="blog-card"> <div class="blog-card-banner"> <img src="./assets/images/blog-5.png" alt="Adaptive Loading - Improving Web Performance on low-end devices" width="250" class="blog-banner-img"> </div> <div class="blog-content-wrapper"> <button class="blog-topic text-tiny">Web Performance</button> <h3><a href="" class="h3">Adaptive Loading - Improving Web Performance on low-end devices</a></h3> <p class="blog-text"> Adaptive Loading: Do not just respond based on screen size, adapt based on actual device hardware. Any user can have a slow experience. In a world with widely varying device capabilities, a "one-size" fits all experience may not always work. Sites that delight users on high-end devices can be unusable on low-end ones, particularly on median mobile and desktop hardware and in emerging markets. </p> <div class="wrapper-flex"> <div class="profile-wrapper"> <img src="./assets/images/author.png" alt="Julia walker" width="50"> </div> <div class="wrapper"> <a href="#" class="h4">Julia Walker</a> <p class="text-sm"> <time datetime="2021-11-10">Nov 10, 2021</time> <span class="separator"></span> <ion-icon name="time-outline"></ion-icon> <time datetime="PT3M">3 min</time> </p> </div> </div> </div> </div> <div class="blog-card"> <div class="blog-card-banner"> <img src="./assets/images/blog-6.png" alt="Don't Develop Just for Yourself - A Developer's Checklist to Accessibility" width="250" class="blog-banner-img"> </div> <div class="blog-content-wrapper"> <button class="blog-topic text-tiny">Accessibility</button> <h3><a href="" class="h3">Don't Develop Just for Yourself - A Developer's Checklist to Accessibility</a> </h3> <p class="blog-text"> We, as developers, tend to develop sites unconsciously for people like ourselves. If we don't actively pay attention, the sites are often accessible only for certain types of people: Sighted mouse-users, who have good fine motor skills and are good at using computers. </p> <div class="wrapper-flex"> <div class="profile-wrapper"> <img src="./assets/images/author.png" alt="Julia walker" width="50"> </div> <div class="wrapper"> <a href="#" class="h4">Julia Walker</a> <p class="text-sm"> <time datetime="2021-10-25">Oct 25, 2021</time> <span class="separator"></span> <ion-icon name="time-outline"></ion-icon> <time datetime="PT7M">7 min</time> </p> </div> </div> </div> </div> <div class="blog-card"> <div class="blog-card-banner"> <img src="./assets/images/blog-7.png" alt="Building a Restful CRUD API with Node JS, Express, and MongoDB" width="250" class="blog-banner-img"> </div> <div class="blog-content-wrapper"> <button class="blog-topic text-tiny">Database</button> <h3><a href="" class="h3">Building a Restful CRUD API with Node JS, Express, and MongoDB</a></h3> <p class="blog-text"> Application Programming Interface is the abbreviation for API. An API is a software interface that enables two apps to communicate with one another. In other words, an API is a messenger that sends your request to the provider and then returns the response to you. </p> <div class="wrapper-flex"> <div class="profile-wrapper"> <img src="./assets/images/author.png" alt="Julia walker" width="50"> </div> <div class="wrapper"> <a href="#" class="h4">Julia Walker</a> <p class="text-sm"> <time datetime="2021-10-15">Oct 15, 2021</time> <span class="separator"></span> <ion-icon name="time-outline"></ion-icon> <time datetime="PT5M">5 min</time> </p> </div> </div> </div> </div> <div class="blog-card"> <div class="blog-card-banner"> <img src="./assets/images/blog-8.png" alt="Monitoring Performance with the PageSpeed Insights API" width="250" class="blog-banner-img"> </div> <div class="blog-content-wrapper"> <button class="blog-topic text-tiny">Web Performance</button> <h3><a href="" class="h3">Monitoring Performance with the PageSpeed Insights API</a></h3> <p class="blog-text"> The PageSpeed Insights API provides free access to performance monitoring for web pages and returns data with suggestions for how to improve. The V5 API includes lab data from Lighthouse and real-world data from the Chrome User Experience Report (CrUX). </p> <div class="wrapper-flex"> <div class="profile-wrapper"> <img src="./assets/images/author.png" alt="Julia walker" width="50"> </div> <div class="wrapper"> <a href="#" class="h4">Julia Walker</a> <p class="text-sm"> <time datetime="2021-10-03">Oct 3, 2021</time> <span class="separator"></span> <ion-icon name="time-outline"></ion-icon> <time datetime="PT5M">5 min</time> </p> </div> </div> </div> </div> <div class="blog-card"> <div class="blog-card-banner"> <img src="./assets/images/blog-9.png" alt="The best web accessibility tools for developers in 2021" width="250" class="blog-banner-img"> </div> <div class="blog-content-wrapper"> <button class="blog-topic text-tiny">Accessibility</button> <h3><a href="" class="h3">The best web accessibility tools for developers in 2021</a> </h3> <p class="blog-text"> The quality of the tools you use defines the speed with which you can diagnose and resolve problems. Each year the landscape changes dramatically in web technologies, and of late the tooling for accessibility is no exception. </p> <div class="wrapper-flex"> <div class="profile-wrapper"> <img src="./assets/images/author.png" alt="Julia walker" width="50"> </div> <div class="wrapper"> <a href="#" class="h4">Julia Walker</a> <p class="text-sm"> <time datetime="2021-09-13">Sep 13, 2021</time> <span class="separator"></span> <ion-icon name="time-outline"></ion-icon> <time datetime="PT7M">7 min</time> </p> </div> </div> </div> </div> <div class="blog-card"> <div class="blog-card-banner"> <img src="./assets/images/blog-10.png" alt="How to connect a React frontend with a NodeJS/Express backend" width="250" class="blog-banner-img"> </div> <div class="blog-content-wrapper"> <button class="blog-topic text-tiny">Database</button> <h3><a href="" class="h3">How to connect a React frontend with a NodeJS/Express backend</a></h3> <p class="blog-text"> The MERN (MongoDB, Express, React, NodeJS) stack is very popular for making full stack applications, utilizing Javascript for both the backend and frontend as well as a document-oriented or non relational database (MongoDB), meaning that it's structured like JSON rather than a large excel sheet like SQL databases are. </p> <div class="wrapper-flex"> <div class="profile-wrapper"> <img src="./assets/images/author.png" alt="Julia walker" width="50"> </div> <div class="wrapper"> <a href="#" class="h4">Julia Walker</a> <p class="text-sm"> <time datetime="2021-09-21">Sep 21, 2021</time> <span class="separator"></span> <ion-icon name="time-outline"></ion-icon> <time datetime="PT4M">4 min</time> </p> </div> </div> </div> </div> </div> <button class="btn load-more">Load More</button> </div> <!-- - ASIDE --> <div class="aside"> <div class="topics"> <h2 class="h2">Topics</h2> <a href="#" class="topic-btn"> <div class="icon-box"> <ion-icon name="server-outline"></ion-icon> </div> <p>Database</p> </a> <a href="#" class="topic-btn"> <div class="icon-box"> <ion-icon name="accessibility-outline"></ion-icon> </div> <p>Accessibility</p> </a> <a href="#" class="topic-btn"> <div class="icon-box"> <ion-icon name="rocket-outline"></ion-icon> </div> <p>Web Performance</p> </a> </div> <div class="tags"> <h2 class="h2">Tags</h2> <div class="wrapper"> <button class="hashtag">#mongodb</button> <button class="hashtag">#nodejs</button> <button class="hashtag">#a11y</button> <button class="hashtag">#mobility</button> <button class="hashtag">#inclusion</button> <button class="hashtag">#webperf</button> <button class="hashtag">#optimize</button> <button class="hashtag">#performance</button> </div> </div> <div class="contact"> <h2 class="h2">Let's Talk</h2> <div class="wrapper"> <p> Do you want to learn more about how I can help your company overcome problems? Let us have a conversation. </p> <ul class="social-link"> <li> <a href="#" class="icon-box discord"> <ion-icon name="logo-discord"></ion-icon> </a> </li> <li> <a href="#" class="icon-box twitter"> <ion-icon name="logo-twitter"></ion-icon> </a> </li> <li> <a href="#" class="icon-box facebook"> <ion-icon name="logo-facebook"></ion-icon> </a> </li> </ul> </div> </div> <div class="newsletter"> <h2 class="h2">Newsletter</h2> <div class="wrapper"> <p> Subscribe to our newsletter to be among the first to keep up with the latest updates. </p> <form action="#"> <input type="email" name="email" placeholder="Email Address" required> <button type="submit" class="btn btn-primary">Subscribe</button> </form> </div> </div> </div> </div> </div> </main> <!-- - #FOOTER --> <footer> <div class="container"> <div class="wrapper"> <a href="#" class="footer-logo"> <img src="./assets/images/logo-light.svg" alt="SimpleBlog Logo" width="150" class="logo-light"> <img src="./assets/images/logo-dark.svg" alt="SimpleBlog Logo" width="150" class="logo-dark"> </a> <p class="footer-text"> Learn about Web accessibility, Web performance, and Database management. </p> </div> <div class="wrapper"> <p class="footer-title">Quick Links</p> <ul> <li> <a href="#" class="footer-link">Advertise with us</a> </li> <li> <a href="#" class="footer-link">About Us</a> </li> <li> <a href="#" class="footer-link">Contact Us</a> </li> </ul> </div> <div class="wrapper"> <p class="footer-title">Legal Stuff</p> <ul> <li> <a href="#" class="footer-link">Privacy Notice</a> </li> <li> <a href="#" class="footer-link">Cookie Policy</a> </li> <li> <a href="#" class="footer-link">Terms Of Use</a> </li> </ul> </div> </div> <p class="copyright"> © Copyright 2024 <a href="#">SimpleBlog</a> </p> </footer> <!-- - custom js link --> <script src="./assets/js/script.js"></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> |