index.html 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <!--
  4. My website, which I'am created for me.
  5. Copyright (C) 2024 Rodion Mern
  6. This program is free software: you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation, either version 3 of the License, or
  9. (at your option) any later version.
  10. This program is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. GNU General Public License for more details.
  14. You should have received a copy of the GNU General Public License
  15. along with this program. If not, see <https://www.gnu.org/licenses/>.
  16. -->
  17. <head>
  18. <title>Rodion Mern - Main page</title>
  19. <meta charset="utf-8">
  20. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  21. <link rel="stylesheet" href="./src/style/styles.css">
  22. <script src="./src/script.js"></script>
  23. </head>
  24. <body>
  25. <nav>
  26. <h2 class="mern-title">Mern</h2>
  27. <hr class="vertical-hr">
  28. <ul class="navigation-menu">
  29. <li><a class="current-page">Home Page</a></li>
  30. <li><a href="./public/pages/contact.html" class="other-page">Contact</a></li>
  31. <li><a href="./public/pages/projects.html" class="other-page">Projects</a></li>
  32. </ul>
  33. </nav>
  34. <div class="main">
  35. <div class="content">
  36. <h2 class="title">
  37. Welcome to my home page, I am Rodion Mern
  38. </h2>
  39. <ul class="links">
  40. <li><a href="https://notabug.org/rodion/mywebsite">Source code</a></li>
  41. <li><a href="https://notabug.org/rodion">My works</a></li>
  42. </ul>
  43. <p class="about-paragraph" id="about-paragraph">
  44. I am a web-developer, <a onclick="getProjects()">programmer</a>, I am writing code in Javascript, Python. I like <a href="https://www.gnu.org">GNU/Linux</a> and <a onclick="getMusic()">music</a>.
  45. </p>
  46. <p id="details-paragraph"></p>
  47. </div>
  48. </div>
  49. <footer>
  50. <p>
  51. Copyright (c) 2024 Rodion Mern<br>
  52. Current version v0.2, last updated 10.2.24.
  53. </p>
  54. </footer>
  55. </body>
  56. </html>