95 lines
2.9 KiB
HTML
95 lines
2.9 KiB
HTML
<!DOCTYPE html>
|
|
<html class="noscroll">
|
|
<head>
|
|
<Title>Home</Title>
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
|
|
<link rel="manifest" href="/site.webmanifest">
|
|
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
|
|
<meta name="msapplication-TileColor" content="#da532c">
|
|
<meta name="theme-color" content="#ff0000">
|
|
<link rel="stylesheet" href="styles/style.css">
|
|
<link rel="stylesheet" href="styles/border.css">
|
|
<link rel="stylesheet" href="styles/button.css">
|
|
</head>
|
|
<body>
|
|
<ul>
|
|
<li><a class="active" href="/index.html">Home</a></li>
|
|
<li><a href="/sitemap.html">Sitemap</a></li>
|
|
<li><a href="/404.html">WIP</a></li>
|
|
<li><a href="/404.html">WIP</a></li>
|
|
</ul>
|
|
<h2>Home</h2>
|
|
|
|
<img src="imgs/zuck.jpg" alt="Mark Zuckerberg" style="width:300px;height:300px;" srcset="" class="broider">
|
|
<p class="double"> Welcome to my Website.</p>
|
|
<a hidden href='/index.html'><button class="button">Home</button></a>
|
|
<a hidden href='/sitemap.html'><button class="button">Sitemap</button></a>
|
|
</body>
|
|
<style>
|
|
html {
|
|
--s:67px; /* shape size */
|
|
--m:4px; /* line thickness */
|
|
|
|
--v1: #fff 119.5deg, #0000 120.5deg;
|
|
--v2: #000 119.5deg, #0000 120.5deg;
|
|
background:
|
|
conic-gradient(at var(--m) calc(var(--s)*0.5777), transparent 270deg, #000 0deg),
|
|
conic-gradient(at calc(100% - var(--m)) calc(var(--s)*0.5777), #000 90deg, transparent 0deg),
|
|
conic-gradient(from -60deg at 50% calc(var(--s)*0.8662) , var(--v1)),
|
|
conic-gradient(from -60deg at 50% calc(var(--s)*0.8662 + 2*var(--m)), var(--v2)),
|
|
conic-gradient(from 120deg at 50% calc(var(--s)*1.4435 + 3*var(--m)), var(--v1)),
|
|
conic-gradient(from 120deg at 50% calc(var(--s)*1.4435 + var(--m)), var(--v2)),
|
|
linear-gradient(90deg, #fff calc(50% - var(--m)),#000 0 calc(50% + var(--m)), #fff 0);
|
|
background-size: calc(var(--s) + 2*var(--m)) calc(var(--s)*1.732 + 3*var(--m));
|
|
mix-blend-mode:lighten;
|
|
}
|
|
html:before {
|
|
content: "";
|
|
position: absolute;
|
|
inset: 0;
|
|
background:linear-gradient(90deg,red,blue,green) left/400% 100%;
|
|
animation:f 2s infinite alternate linear;
|
|
}
|
|
|
|
@keyframes f {
|
|
100% {background-position:right}
|
|
}
|
|
</style>
|
|
<style>
|
|
ul {
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
background-color: #333;
|
|
position: fixed;
|
|
top: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
li {
|
|
float: left;
|
|
}
|
|
|
|
li a {
|
|
display: block;
|
|
color: white;
|
|
text-align: center;
|
|
padding: 14px 16px;
|
|
text-decoration: none;
|
|
}
|
|
|
|
li a:hover:not(.active) {
|
|
background-color: #111;
|
|
}
|
|
|
|
.active {
|
|
background-color: #04AA6D;
|
|
}
|
|
body{
|
|
margin: 0px;
|
|
}
|
|
</style>
|
|
</html> |