Inital commit

This commit is contained in:
𝓜𝓪𝓬𝓮™
2026-04-02 11:54:46 +02:00
commit b89887106d
7 changed files with 450 additions and 0 deletions

28
includes/header.php Normal file
View File

@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php echo htmlspecialchars($pageTitle, ENT_QUOTES, 'UTF-8'); ?></title>
<meta name="description" content="<?php echo htmlspecialchars($pageDescription, ENT_QUOTES, 'UTF-8'); ?>">
<meta name="theme-color" content="#0d0821">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Russo+One&family=Source+Sans+Pro:wght@400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="../assets/css/style.css">
</head>
<body>
<header class="header">
<nav class="nav">
<div class="container nav-container">
<a href="./index.php" class="brand">HexaHost</a>
<ul class="nav-menu">
<li><a class="nav-link <?php echo $currentPage === 'home' ? 'active' : ''; ?>" href="./index.php">Home</a></li>
<li><a class="nav-link" href="#leistungen">Leistungen</a></li>
<li><a class="nav-link" href="#kontakt">Kontakt</a></li>
</ul>
</div>
</nav>
</header>