Falcon
Yönetici
CSS:
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<title>Modern Menü</title>
<style>
body {
margin: 0;
font-family: sans-serif;
}
nav {
background-color: #222;
padding: 15px 40px;
display: flex;
justify-content: space-between;
align-items: center;
}
nav .logo {
color: white;
font-size: 20px;
font-weight: bold;
}
nav ul {
list-style: none;
display: flex;
margin: 0;
padding: 0;
}
nav ul li {
margin-left: 25px;
}
nav ul li a {
text-decoration: none;
color: white;
font-weight: 500;
transition: color 0.3s ease;
}
nav ul li a:hover {
color: #00bcd4;
}
</style>
</head>
<body>
<nav>
<div class="logo">MySite</div>
<ul>
<li><a href="#">Anasayfa</a></li>
<li><a href="#">Hakkımızda</a></li>
<li><a href="#">Hizmetler</a></li>
<li><a href="#">İletişim</a></li>
</ul>
</nav>
</body>
</html>