46 lines
1.5 KiB
HTML
46 lines
1.5 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>
|
|
<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 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>
|
|
</html> |