0f3cd6a9cd
Dekorative Bilder müssen alt="" haben
28 lines
1.3 KiB
PHP
28 lines
1.3 KiB
PHP
<!--
|
|
Globales Menü, wird via PHP später in alle Seiten eingebunden
|
|
-->
|
|
<nav style="background:#808080; height: 60px;">
|
|
<div style="float:left; text-align: center;">
|
|
<a href="../index.php">
|
|
<img src="../images/logo.png" alt="" style="height: 44px;">
|
|
</a>
|
|
|
|
|
<a href = "../content/informatik.php" style = "padding: 5px; text-align: center; text-decoration: none; display: inline-block;"><b>Informatik</b></a>
|
|
|
|
|
<a href = "../content/mathe.php" style = "padding: 5px; text-align: center; text-decoration: none; display: inline-block;"><b>Mathe</b></a>
|
|
|
|
|
<a href = "../content/physik.php" style = "padding: 5px; text-align: center; text-decoration: none; display: inline-block;"><b>Physik</b></a>
|
|
|
|
|
<a href = "../content/profile.php" style = "padding: 5px; text-align: center; text-decoration: none; display: inline-block;"><b>Dein Profil</b></a>
|
|
|
|
|
</div>
|
|
<div style="float:right; text-align: center;">
|
|
<?php
|
|
include_once 'search.php';
|
|
?>
|
|
|
|
|
<a href = "../auth/login.php" style = "background-color: #f44336; color: white; padding: 4px 20px; text-align: center; text-decoration: none; display: inline-block;"> Anmelden </a>
|
|
|
|
<a href = "../auth/register.php" style = "background-color: #f44336; color: white; padding: 4px 20px; text-align: center; text-decoration: none; display: inline-block;"> Registrieren </a>
|
|
</div>
|
|
</nav>
|