1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <!DOCTYPE html>
- <!--
- My personal web-site.
- Copyright (C) 2024 Rodion Saburov
- 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/>.
- -->
- <html>
- <head>
- <title>/home/rodion</title>
- <meta charset="utf-8">
- <meta name="viewport"
- content="width=device-width, initial-scale=1.0">
- <link rel="stylesheet" href="./src/styles/styles.css">
- <link rel="icon" href="./src/images/favicon.png" type="image/png">
- <script src="./src/script.js"></script>
- </head>
- <body>
- <div class="content">
- <div class="error">
- <h1 class="error-title" id="error-title" onclick="error()">ERROR!504</h1>
- <p class="error-text" id="error-text" onclick="textAnimation()">
- My name is Rodion Saburov (Mern), teenager, who wants to become a web-developer.
- </p>
- </div>
- <div class="social">
- <a href="mailto:saburoworkmail@gmail.com" class="social-media" target="_blank">
- <img src="./src/images/gmail.png" class="social-img"
- id="gmail">
- <p>Work e-mail</p>
- </a>
- <a href="mailto:rodiom@tutanota.de" class="social-media" target="_blank">
- <img src="./src/images/tutanota.png" class="social-img"
- id="tutanota">
- <p>Personal e-mail</p>
- </a>
- <a href="https://www.linux.org.ru/people/rodion/profile" class="social-media"
- target="_blank">
- <img src="./src/images/linuxorgru.png" class="social-img"
- id="linuxorgru">
- <p>Linux.org.ru</p>
- </a>
- <a href="https://pingvinus.ru/user/rodion" class="social-media" target="_blank">
- <img src="./src/images/pingvinus.png" class="social-img"
- id="pingvinus">
- <p>Pingvinus</p>
- </a>
- <a href="https://pingvinus.ru/user/rosburff" class="social-media" target="_blank">
- <img src="./src/images/pingvinus.png" class="social-img"
- id="pingvinus">
- <p>Pingvinus (old)</p>
- </a>
- <a href="https://lor.sh/@rodion" class="social-media" target="_blank">
- <img src="./src/images/lor.png" class="social-img"
- id="pingvinus">
- <p>@rodion@lor.sh </p>
- </a>
- <a href="https://mas.to/@rodion" class="social-media" target="_blank">
- <img src="./src/images/mas.png" class="social-img"
- id="pingvinus">
- <p>@rodion@mas.to </p>
- </a>
- <div>
- </div>
- </body>
- </html>
|