about.html 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ"
  8. crossorigin="anonymous">
  9. <link rel="stylesheet" href="css/main.css">
  10. <title>About Me</title>
  11. </head>
  12. <body>
  13. <header>
  14. <div class="menu-btn">
  15. <div class="btn-line"></div>
  16. <div class="btn-line"></div>
  17. <div class="btn-line"></div>
  18. </div>
  19. <nav class="menu">
  20. <div class="menu-branding">
  21. <div class="portrait"></div>
  22. </div>
  23. <ul class="menu-nav">
  24. <li class="nav-item">
  25. <a href="index.html" class="nav-link">
  26. Home
  27. </a>
  28. </li>
  29. <li class="nav-item current">
  30. <a href="about.html" class="nav-link">
  31. About Me
  32. </a>
  33. </li>
  34. <li class="nav-item">
  35. <a href="work.html" class="nav-link">
  36. My Work
  37. </a>
  38. </li>
  39. <li class="nav-item">
  40. <a href="contact.html" class="nav-link">
  41. How To Reach Me
  42. </a>
  43. </li>
  44. </ul>
  45. </nav>
  46. </header>
  47. <main id="about">
  48. <h1 class="lg-heading">
  49. About
  50. <span class="text-secondary">Me</span>
  51. </h1>
  52. <h2 class="sm-heading">
  53. Let me tell you a few things...
  54. </h2>
  55. <div class="about-info">
  56. <img src="img/cat250.jpeg" alt="Mr. CaT" class="bio-image">
  57. <div class="bio">
  58. <h3 class="text-secondary">BIO</h3>
  59. <p>I've got about 6 years of experience in Web Development. Have good experience in such technologies like:
  60. Git, PHP, Laravel, JavaScript, Vuejs, JQuery, HTML, CSS, SASS, Bootstrap, Bulma, TailwindCSS, Emacs Lisp.</p>
  61. <p>With all heart I'm a GNU/Linux enthusiast, even built my own distro <b>BoldOS</b> with LFS project. <b>FSF, Open Source</b> follower.</p>
  62. </div>
  63. <div class="job job-1">
  64. <h3>Netchits <small>2018</small></h3>
  65. <h6>Co-Founder</h6>
  66. <p>Social network which not only provides <i>links</i> storage, also you can save you YouTube videos here and watch anytime.</p>
  67. <a href="https://github.com/mrcat323/netchits" target="_blank" class="btn-dark">
  68. <i class="fab fa-github"></i> Github
  69. </a>
  70. </div>
  71. <div class="job job-2">
  72. <h3>Babolo <small>2020-2021</small></h3>
  73. <h6>Backend Developer</h6>
  74. <p>Job searching platform</p>
  75. </div>
  76. <div class="job job-3">
  77. <h3>American Space Bokhtar <small>2019</small></h3>
  78. <h6>Volunteer</h6>
  79. <p>I enjoy helping, teaching people. With my English, IT skills, I provide unique knowledge for everyone, either kinds, teenagers or adults. </p>
  80. </div>
  81. <div class="job job-4">
  82. <h3>Web Dushanbe <small>2021-2022</small></h3>
  83. <h6>Full Stack Developer</h6>
  84. <p>Providing better technologies all together with Web Dushanbe. At the same time showing the best practices.</p>
  85. <a href="https://webdushanbe.com" target="_blank" class="btn-light">
  86. <i class="fas fa-eye"></i> Project
  87. </a>
  88. </div>
  89. </div>
  90. </main>
  91. <footer id="main-footer">
  92. Copyright &copy; by Mr. CaT 2017-2023
  93. </footer>
  94. <script src="js/main.js"></script>
  95. </body>
  96. </html>