HTML test
von qSeb01 •
HTML •
2025-08-15 20:31:17
HTML Website
Download
<style>
body {
background-color: #f5f5f5;
color: #333333;
font-family: Arial, sans-serif;
margin: 0;
}
nav {
background: #ffffff;
padding: 10px 20px;
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1px solid #ddd;
}
nav a {
color: #333333;
text-decoration: none;
margin: 0 10px;
font-weight: bold;
}
.nav-left {
display: flex;
align-items: center;
}
.nav-right {
display: flex;
align-items: center;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-btn {
cursor: pointer;
color: #333333;
font-weight: bold;
padding: 10px;
}
.dropdown-content {
display: none;
position: absolute;
right: 0;
background-color: #ffffff;
min-width: 160px;
box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
z-index: 1;
border-radius: 5px;
border: 1px solid #ddd;
}
.dropdown-content a {
color: #333333;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown-content a:hover {
background-color: #f0f0f0;
}
.dropdown:hover .dropdown-content {
display: block;
}
.card, .content {
background: #ffffff;
border-radius: 10px;
padding: 20px;
margin: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}
button, input[type=submit] {
background: #e0e0e0;
color: #333333;
border: none;
padding: 10px 15px;
border-radius: 5px;
cursor: pointer;
}
button:hover, input[type=submit]:hover {
background: #cccccc;
}
</style>
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bukkit-Hosting – CoretexX.org</title>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet">
<style>
body { margin: 0; font-family: 'Poppins', sans-serif; background-color: #1a1a1a; color: white; }
header { display: flex; justify-content: space-between; align-items: center; background-color: #5a2ea6; padding: 1rem 2rem; position: sticky; top: 0; z-index: 1000; }
header h1 { margin: 0; font-size: 1.5rem; font-weight: 600; }
header h1 a { color: white; text-decoration: none; }
nav { position: relative; }
nav > a { font-size: 1.2rem; font-weight: 500; color: white; text-decoration: none; cursor: pointer; padding: 0.5rem 1rem; border-radius: 5px; transition: background 0.3s ease; }
nav > a:hover { background-color: rgba(255,255,255,0.2); }
.dropdown { display: none; position: absolute; top: 100%; left: 0; background-color: #2b2b2b; border-radius: 5px; min-width: 200px; box-shadow: 0 4px 8px rgba(0,0,0,0.3); }
.dropdown a { display: block; padding: 0.8rem 1rem; color: white; text-decoration: none; transition: background 0.3s ease; }
.dropdown a:hover { background-color: #5a2ea6; }
nav:hover .dropdown { display: block; }
.content { padding: 3rem 2rem; display: grid; gap: 2rem; }
.project-card { background-color: #2b2b2b; border-radius: 10px; padding: 2rem; text-align: center; transition: transform 0.3s ease; }
.project-card:hover { transform: translateY(-5px); }
.project-card img { width: 60px; margin-bottom: 1rem; }
.project-card h3 { margin-bottom: 0.5rem; }
.project-card p { color: #d1b3ff; }
</style>
</head>
<body>
<header>
<h1><a href="index.html">CoretexX</a></h1>
<nav>
<a>Projekte ▼</a>
<div class="dropdown">
<a href="bukkit-hosting.html">Bukkit-Hosting</a>
</div>
</nav>
</header>
<section class="content">
<div class="project-card">
<img src="https://img.icons8.com/ios-filled/50/ffffff/server.png" alt="Minecraft Server">
<h3>Minecraft Server</h3>
<p>Leistungsstarke Bukkit-, Spigot- und Paper-Server mit vollem Plugin-Support.</p>
</div>
<div class="project-card">
<img src="https://img.icons8.com/ios-filled/50/ffffff/cloud.png" alt="KVM Server">
<h3>KVM Server</h3>
<p>Virtuelle KVM-Server für maximale Performance und volle Kontrolle.</p>
</div>
<div class="project-card">
<img src="https://img.icons8.com/ios-filled/50/ffffff/domain.png" alt="Domains">
<h3>Domains</h3>
<p>Registriere deine Wunsch-Domain zu attraktiven Konditionen.</p>
</div>
<div class="project-card">
<img src="https://img.icons8.com/ios-filled/50/ffffff/web.png" alt="Webserver">
<h3>Webserver</h3>
<p>Hochperformante Webserver für Websites, Shops und Anwendungen.</p>
</div>
</section>
</body>
</html>
Kommentare