Erster Br0tcraft-website versuch
This commit is contained in:
@ -1,5 +1,70 @@
|
||||
<html>
|
||||
<body>
|
||||
<h1>Hello World</h1>
|
||||
</body>
|
||||
<!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>
|
||||
|
Reference in New Issue
Block a user