71 lines
1.5 KiB
HTML
71 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Br0tcraft</title>
|
|
|
|
<style>
|
|
@import url(/fonts/Roboto);
|
|
</style>
|
|
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
font-family: "Roboto", sans-serif;
|
|
}
|
|
|
|
.header-image {
|
|
height: 80%;
|
|
width: 100%;
|
|
object-fit: cover;
|
|
filter: brightness(0.5);
|
|
}
|
|
|
|
.container {
|
|
/*background-color: rgb(253, 129, 129);*/
|
|
position: absolute;
|
|
right: 32px;
|
|
left: 32px;
|
|
top: 16px;
|
|
font-size: 24px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.menu-link {
|
|
color: white;
|
|
text-decoration: none;
|
|
margin-left: 16px;
|
|
}
|
|
|
|
.menu-link:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.headline {
|
|
position: absolute;
|
|
left: 25px;
|
|
top: 460px;
|
|
color: rgb(0, 0, 0);
|
|
font-size: 40px;
|
|
text-shadow: 5px 5px 3px rgba(5, 0, 0, 0.26);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<img class="header-image" src="img/Redstone.png" />
|
|
<div class="container">
|
|
<img src="img/Logo.png" class="logo" />
|
|
<div>
|
|
<a class="menu-link" href="">Home</a>
|
|
<a class="menu-link" href="">Kontakt</a>
|
|
<a class="menu-link" href="">Spiele</a>
|
|
</div>
|
|
</div>
|
|
|
|
<h1 class="headline">Meine Werke</h1>
|
|
</body>
|
|
</html>
|