1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <!DOCTYPE html>
- <html lang="en">
- <!--
- My website, which I'am created for me.
- Copyright (C) 2024 Rodion Mern
- This program is free software: you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation, either version 3 of the License, or
- (at your option) any later version.
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <https://www.gnu.org/licenses/>.
- -->
- <head>
- <title>Rodion Mern - Main page</title>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link rel="stylesheet" href="./src/style/styles.css">
- <script src="./src/script.js"></script>
- </head>
- <body>
- <nav>
- <h2 class="mern-title">Mern</h2>
- <hr class="vertical-hr">
- <ul class="navigation-menu">
- <li><a class="current-page">Home Page</a></li>
- <li><a href="./public/pages/contact.html" class="other-page">Contact</a></li>
- <li><a href="./public/pages/projects.html" class="other-page">Projects</a></li>
- </ul>
- </nav>
- <div class="main">
- <div class="content">
- <h2 class="title">
- Welcome to my home page, I am Rodion Mern
- </h2>
- <ul class="links">
- <li><a href="https://notabug.org/rodion/mywebsite">Source code</a></li>
- <li><a href="https://notabug.org/rodion">My works</a></li>
- </ul>
- <p class="about-paragraph" id="about-paragraph">
- 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>.
- </p>
- <p id="details-paragraph"></p>
- </div>
- </div>
- <footer>
- <p>
- Copyright (c) 2024 Rodion Mern<br>
- Current version v0.2, last updated 10.2.24.
- </p>
- </footer>
- </body>
- </html>
|