70 lines
1.6 KiB
HTML
70 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html class="noscroll">
|
|
<head>
|
|
<Title>Home</Title>
|
|
<link rel="shortcut icon" href="globe.gif" type="image/x-icon">
|
|
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
|
|
<link rel="stylesheet" href="styles/style.css">
|
|
<link rel="stylesheet" href="styles/border.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>
|
|
<style>
|
|
.button {
|
|
padding: 15px 25px;
|
|
font-size: 24px;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
outline: none;
|
|
color: #fff;
|
|
background-color: #04AA6D;
|
|
border: none;
|
|
border-radius: 15px;
|
|
box-shadow: 0 9px #999;
|
|
}
|
|
|
|
.button:hover {background-color: #3e8e41}
|
|
|
|
.button:active {
|
|
background-color: #3e8e41;
|
|
box-shadow: 0 5px #666;
|
|
transform: translateY(4px);
|
|
}
|
|
.noscroll::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
.noscroll {
|
|
-ms-overflow-style: none;
|
|
scrollbar-width: none;
|
|
}
|
|
</style>
|
|
</html> |