88 lines
2.2 KiB
HTML
88 lines
2.2 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 Chilling" 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, body {
|
|
width: 100%;
|
|
height:100%;
|
|
}
|
|
|
|
body {
|
|
background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
|
|
background-size: 400% 400%;
|
|
animation: gradient 15s ease infinite;
|
|
}
|
|
|
|
@keyframes gradient {
|
|
0% {
|
|
background-position: 0% 50%;
|
|
}
|
|
50% {
|
|
background-position: 100% 50%;
|
|
}
|
|
100% {
|
|
background-position: 0% 50%;
|
|
}
|
|
}
|
|
</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> |