mirror of
https://github.com/xHyroM/links.git
synced 2024-11-10 02:28:06 +01:00
reset
This commit is contained in:
parent
5a1b452948
commit
167c9aee1a
8 changed files with 0 additions and 631 deletions
1
CNAME
1
CNAME
|
@ -1 +0,0 @@
|
|||
odkazy.oliminator.net
|
21
LICENSE
21
LICENSE
|
@ -1,21 +0,0 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2021 OLIMINATOR
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
293
css/css.css
293
css/css.css
|
@ -1,293 +0,0 @@
|
|||
@import url("https://fonts.googleapis.com/css2?family=Rubik&display=swap");
|
||||
@import url("https://fonts.googleapis.com/css2?family=Ubuntu&display=swap");
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background-color: #000e14;
|
||||
background-image: linear-gradient(62deg, #000e14 0%, #001929 100%);
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
header {
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-pack: center;
|
||||
-ms-flex-pack: center;
|
||||
justify-content: center;
|
||||
-webkit-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
margin-top: 2em;
|
||||
margin-bottom: 2em;
|
||||
}
|
||||
|
||||
header h1 {
|
||||
color: white;
|
||||
font-size: 2em;
|
||||
font-family: "Rubik", sans-serif;
|
||||
text-shadow: 0 0 3px #fff;
|
||||
}
|
||||
|
||||
header img {
|
||||
height: 8em;
|
||||
}
|
||||
|
||||
section {
|
||||
display: -webkit-box;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
-webkit-box-pack: center;
|
||||
-ms-flex-pack: center;
|
||||
justify-content: center;
|
||||
-webkit-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
section ul {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
section ul li {
|
||||
margin-bottom: 3.5em;
|
||||
list-style-type: none;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
section ul li a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
section ul li .btn-yt {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #db0000;
|
||||
padding: 1.2em 6.5em;
|
||||
border-radius: 0.8em;
|
||||
-webkit-transition: 0.3s;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
section ul li .btn-yt:hover {
|
||||
background: #a60f0f;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
|
||||
section ul li .btn-tiktok {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #8a257e;
|
||||
padding: 1.2em 6em;
|
||||
border-radius: 0.8em;
|
||||
-webkit-transition: 0.3s;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
section ul li .btn-tiktok:hover {
|
||||
background: #5e1956;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
|
||||
section ul li .btn-ig {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #ad0046;
|
||||
padding: 1.2em 5.7em;
|
||||
border-radius: 0.8em;
|
||||
-webkit-transition: 0.3s;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
section ul li .btn-ig:hover {
|
||||
background: #91003b;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
|
||||
section ul li .btn-github {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #171717;
|
||||
padding: 1.2em 6.7em;
|
||||
border-radius: 0.8em;
|
||||
-webkit-transition: 0.3s;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
section ul li .btn-github:hover {
|
||||
background: #121212;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
|
||||
section ul li .btn-discord {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #4f53ff;
|
||||
padding: 1.2em 6.5em;
|
||||
border-radius: 0.8em;
|
||||
-webkit-transition: 0.3s;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
section ul li .btn-discord:hover {
|
||||
background: #3c40fa;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
|
||||
section ul li .btn-namemc {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #45293f;
|
||||
padding: 1.2em 6.8em;
|
||||
border-radius: 0.8em;
|
||||
-webkit-transition: 0.3s;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
section ul li .btn-namemc:hover {
|
||||
background: #2b1a28;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
|
||||
section ul li .btn-mcserver {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #6bcf00;
|
||||
padding: 1.2em 5.2em;
|
||||
border-radius: 0.8em;
|
||||
-webkit-transition: 0.3s;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
section ul li .btn-mcserver:hover {
|
||||
background: #428000;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
|
||||
section ul li .btn-mcplanet {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #006b91;
|
||||
padding: 1.2em 6.5em;
|
||||
border-radius: 0.8em;
|
||||
-webkit-transition: 0.3s;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
section ul li .btn-mcplanet:hover {
|
||||
background: #014c66;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
|
||||
section ul li .btn-laby {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #002a6e;
|
||||
padding: 1.2em 6.5em;
|
||||
border-radius: 0.8em;
|
||||
-webkit-transition: 0.3s;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
section ul li .btn-laby:hover {
|
||||
background: #00122e;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
|
||||
section ul li .btn-more {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: #5786de;
|
||||
padding: 0.8em 2em;
|
||||
border-radius: 0.8em;
|
||||
-webkit-transition: 0.6s;
|
||||
transition: 0.6s;
|
||||
}
|
||||
|
||||
section ul li .btn-more:hover {
|
||||
color: #1c4085;
|
||||
background: #d4e3ff;
|
||||
border-radius: 2.9em;
|
||||
}
|
||||
|
||||
.btn-twitch {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #5200a3;
|
||||
padding: 1.2em 7em;
|
||||
border-radius: 0.8em;
|
||||
-webkit-transition: 0.3s;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
.btn-twitch:hover {
|
||||
background: #47008c;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
|
||||
.btn-replit {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #8a5a6e;
|
||||
padding: 1.2em 7em;
|
||||
border-radius: 0.8em;
|
||||
-webkit-transition: 0.3s;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
.btn-replit:hover {
|
||||
background: #5e3d4b;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
|
||||
.btn-twitter {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #1da1f2;
|
||||
padding: 1.2em 7em;
|
||||
border-radius: 0.8em;
|
||||
-webkit-transition: 0.3s;
|
||||
transition: 0.3s;
|
||||
}
|
||||
|
||||
.btn-twitter:hover {
|
||||
background: #0f87d1;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
|
||||
footer {
|
||||
margin-top: 3em;
|
||||
padding: 2.2em;
|
||||
background-color: #000508;
|
||||
}
|
||||
|
||||
.footer-text-main {
|
||||
color: #525252;
|
||||
font-family: "Ubuntu", sans-serif;
|
||||
text-align: center;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
margin-top: 1em;
|
||||
}
|
||||
|
||||
.footer-odkazy {
|
||||
color: gray;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
text-align: center;
|
||||
list-style-type: none;
|
||||
font-size: 0.7em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.footer-odkazy li {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.footer-odkazy-text {
|
||||
font-family: "Ubuntu", sans-serif;
|
||||
text-decoration: underline;
|
||||
color: #333333;
|
||||
display: inline-block;
|
||||
}
|
||||
/*# sourceMappingURL=css.css.map */
|
File diff suppressed because one or more lines are too long
233
css/css.scss
233
css/css.scss
|
@ -1,233 +0,0 @@
|
|||
@import url("https://fonts.googleapis.com/css2?family=Rubik&display=swap");
|
||||
@import url("https://fonts.googleapis.com/css2?family=Ubuntu&display=swap");
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background-color: #000e14;
|
||||
background-image: linear-gradient(62deg, #000e14 0%, #001929 100%);
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
header {
|
||||
// LOGO A TEXT
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
margin-top: 2em;
|
||||
margin-bottom: 2em;
|
||||
h1 {
|
||||
color: white;
|
||||
font-size: 2em;
|
||||
font-family: "Rubik", sans-serif;
|
||||
text-shadow: 0 0 3px #fff;
|
||||
}
|
||||
img {
|
||||
height: 8em;
|
||||
}
|
||||
}
|
||||
section {
|
||||
// TLACITKA
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
ul {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
li {
|
||||
margin-bottom: 3.5em;
|
||||
list-style-type: none;
|
||||
text-align: center;
|
||||
a {
|
||||
text-decoration: none;
|
||||
}
|
||||
.btn-yt {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #db0000;
|
||||
padding: 1.2em 6.5em;
|
||||
border-radius: 0.8em;
|
||||
transition: 0.3s;
|
||||
&:hover {
|
||||
background: #a60f0f;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
}
|
||||
.btn-tiktok {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #8a257e;
|
||||
padding: 1.2em 6em;
|
||||
border-radius: 0.8em;
|
||||
transition: 0.3s;
|
||||
&:hover {
|
||||
background: #5e1956;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
}
|
||||
.btn-ig {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #ad0046;
|
||||
padding: 1.2em 5.7em;
|
||||
border-radius: 0.8em;
|
||||
transition: 0.3s;
|
||||
&:hover {
|
||||
background: #91003b;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
}
|
||||
.btn-github {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #171717;
|
||||
padding: 1.2em 6.7em;
|
||||
border-radius: 0.8em;
|
||||
transition: 0.3s;
|
||||
&:hover {
|
||||
background: #121212;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
}
|
||||
.btn-discord {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #4f53ff;
|
||||
padding: 1.2em 6.5em;
|
||||
border-radius: 0.8em;
|
||||
transition: 0.3s;
|
||||
&:hover {
|
||||
background: #3c40fa;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
}
|
||||
.btn-namemc {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #45293f;
|
||||
padding: 1.2em 6.8em;
|
||||
border-radius: 0.8em;
|
||||
transition: 0.3s;
|
||||
&:hover {
|
||||
background: #2b1a28;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
}
|
||||
.btn-mcserver {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #6bcf00;
|
||||
padding: 1.2em 5.2em;
|
||||
border-radius: 0.8em;
|
||||
transition: 0.3s;
|
||||
&:hover {
|
||||
background: #428000;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
}
|
||||
.btn-mcplanet {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #006b91;
|
||||
padding: 1.2em 6.5em;
|
||||
border-radius: 0.8em;
|
||||
transition: 0.3s;
|
||||
&:hover {
|
||||
background: #014c66;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
}
|
||||
.btn-laby {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #002a6e;
|
||||
padding: 1.2em 6.5em;
|
||||
border-radius: 0.8em;
|
||||
transition: 0.3s;
|
||||
&:hover {
|
||||
background: #00122e;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
}
|
||||
.btn-more {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: #5786de;
|
||||
padding: 0.8em 2em;
|
||||
border-radius: 0.8em;
|
||||
transition: 0.6s;
|
||||
&:hover {
|
||||
color: #1c4085;
|
||||
background: #d4e3ff;
|
||||
border-radius: 2.9em;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.btn-twitch {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #5200a3;
|
||||
padding: 1.2em 7em;
|
||||
border-radius: 0.8em;
|
||||
transition: 0.3s;
|
||||
&:hover {
|
||||
background: #47008c;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
}
|
||||
// Bonus buttons
|
||||
.btn-replit {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #8a5a6e;
|
||||
padding: 1.2em 7em;
|
||||
border-radius: 0.8em;
|
||||
transition: 0.3s;
|
||||
&:hover {
|
||||
background: #5e3d4b;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
}
|
||||
.btn-twitter {
|
||||
font-family: "Rubik", sans-serif;
|
||||
color: white;
|
||||
background-color: #1da1f2;
|
||||
padding: 1.2em 7em;
|
||||
border-radius: 0.8em;
|
||||
transition: 0.3s;
|
||||
&:hover {
|
||||
background: #0f87d1;
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
}
|
||||
footer {
|
||||
margin-top: 3em;
|
||||
padding: 2.2em;
|
||||
background-color: #000508;
|
||||
}
|
||||
|
||||
.footer-text-main {
|
||||
color: #525252;
|
||||
font-family: "Ubuntu", sans-serif;
|
||||
text-align: center;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
margin-top: 1em;
|
||||
}
|
||||
.footer-odkazy {
|
||||
color: gray;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
text-align: center;
|
||||
list-style-type: none;
|
||||
font-size: 0.7em;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
.footer-odkazy li {
|
||||
display: inline-block;
|
||||
}
|
||||
.footer-odkazy-text {
|
||||
font-family: "Ubuntu", sans-serif;
|
||||
text-decoration: underline;
|
||||
color: #333333;
|
||||
display: inline-block;
|
||||
}
|
BIN
files/logo.png
BIN
files/logo.png
Binary file not shown.
Before Width: | Height: | Size: 14 KiB |
38
index.html
38
index.html
|
@ -1,38 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="sk">
|
||||
<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>OLIMINATOR - Odkazy</title>
|
||||
<link rel="stylesheet" href="css/css.css">
|
||||
<link rel="icon" href="files/logo.png">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<img src="files/logo.png" alt="logo">
|
||||
<h1>OLIMINATOR</h1>
|
||||
</header>
|
||||
<section class="buttons">
|
||||
<ul>
|
||||
<li><a href="https://go.oliminator.net/youtube" class="btn-yt"><i class="fab fa-youtube"></i> YouTube</a></li>
|
||||
<li><a href="https://go.oliminator.net/titok" class="btn-tiktok"><i class="fab fa-tiktok"></i> TikTok</a></li>
|
||||
<li><a href="https://go.oliminator.net/instagram" class="btn-ig"><i class="fab fa-instagram"></i> Instagram</a> </li>
|
||||
<li><a href="https://go.oliminator.net/github" class="btn-github"><i class="fab fa-github"></i> GitHub</a></li>
|
||||
<li><a href="https://go.oliminator.net/discord" class="btn-discord"><i class="fab fa-discord"></i> Discord</a></li>
|
||||
<li><a href="https://go.oliminator.net/laby" class="btn-laby"><i class="far fa-address-card"></i> Laby.net</a></li>
|
||||
<li><a href="https://go.oliminator.net/namemc" class="btn-namemc"><i class="fas fa-address-book"></i> NameMC</a></li>
|
||||
<li><a href="https://lendmark.sk" class="btn-mcserver"><i class="fas fa-cube"></i> Minecraft Server</a></li>
|
||||
<li><a href="https://go.oliminator.net/mcplanet" class="btn-mcplanet"><i class="fas fa-globe-europe"></i> MCPlanet</a></li>
|
||||
<li><a href="viac.html" class="btn-more"><i class="fas fa-chevron-circle-down"></i> Zobraziť viac</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<footer>
|
||||
<ul class="footer-odkazy">
|
||||
<li><a href="https://oliminator.net" class="footer-odkazy-text">Hlavná Webstránka</a></li>
|
||||
</ul>
|
||||
<h6 class="footer-text-main">© 2021 OLIMINATOR</h6>
|
||||
</footer>
|
||||
<script src="https://kit.fontawesome.com/5acf4d9e80.js" crossorigin="anonymous"></script>
|
||||
</body>
|
||||
</html>
|
36
viac.html
36
viac.html
|
@ -1,36 +0,0 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="sk">
|
||||
<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>OLIMINATOR - Odkazy | Viac</title>
|
||||
<link rel="stylesheet" href="css/css.css">
|
||||
<link rel="icon" href="files/logo.png">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<img src="files/logo.png" alt="logo">
|
||||
<h1>OLIMINATOR</h1>
|
||||
</header>
|
||||
<section class="buttons">
|
||||
<ul>
|
||||
<li><a href="index.html" class="btn-more"><i class="fas fa-chevron-circle-up"></i> Zobraziť menej</a></li>
|
||||
<li><a href="https://www.youtube.com/channel/UCUzzWSpnVcCMzevzr7j-yvQ" class="btn-yt"><i class="fab fa-youtube"></i> YouTube 2</a></li>
|
||||
<li><a href="https://go.oliminator.net/yt-polyluck" class="btn-yt"><i class="fab fa-youtube"></i> YouTube 3</a></li>
|
||||
<li><a href="https://www.youtube.com/channel/UCVMjEzSma2BSa-_fQLr-9wA/videos" class="btn-yt"><i class="fab fa-youtube"></i> YouTube 4</a></li>
|
||||
<li><a href="https://replit.com/@oliminator" class="btn-replit"><i class="far fa-dot-circle"></i> Replit</a></li>
|
||||
<li><a href="https://twitter.com/oliminator34" class="btn-twitter"><i class="fab fa-twitter"></i> Twitter</a></li>
|
||||
<li><a href="https://www.tiktok.com/@oliminatorko" class="btn-tiktok"><i class="fab fa-tiktok"></i> TikTok 2</a></li>
|
||||
<li><a href="https://www.twitch.com/oliminator" class="btn-twitch"><i class="fab fa-twitch"></i> Twitch</a></li>
|
||||
</ul>
|
||||
</section>
|
||||
<footer>
|
||||
<ul class="footer-odkazy">
|
||||
<li><a href="https://oliminator.net" class="footer-odkazy-text">Hlavná Webstránka</a></li>
|
||||
</ul>
|
||||
<h6 class="footer-text-main">© 2021 OLIMINATOR</h6>
|
||||
</footer>
|
||||
<script src="https://kit.fontawesome.com/5acf4d9e80.js" crossorigin="anonymous"></script>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in a new issue