i need help
Archived a year ago
B
berat
Member
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Türkische National Mannschaft</title>
<style>
body {
margin: 0;
}
.header-image {
height: 100vh;
width: 100%;
object-fit: cover;
filter: brightness(0.6);
}
.container {
position: absolute;
left: 32px;
right: 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;
}
</style>
</head>
<body>
<img class="header-image" src="/background.jpg">
<div class="container">
<img src="logo.png">
<div>
<a class="menu-link" href="">a</a>
<a class="menu-link" href="">b</a>
<a class="menu-link" href="">c</a>
<a class="menu-link" href="">d</a>
</div>
</div>
</body>
</html>
i want that the turkey logo is on the top at the middle and i want it a little bit smaller. and the "a" "b"c"d" must on the right bottom up corner
Thank u very much

