Files
webprogrammierung/includes/navbar.php
T
niklas.ortmann e4b03fff7a profile-site + first article
Profilseite mit Inhalt

Artikel "Pythagoras" mit Inhalt
2026-04-20 22:19:26 +02:00

22 lines
1.2 KiB
PHP

<!--
Globales Menü, wird via PHP später in alle Seiten eingebunden
-->
<nav>
<img src="../images/logo.png" style="height: 44px; ">
<a href = "../content/informatik.html" style = "color: white; padding: 5px; text-align: center; text-decoration: none; display: inline-block;"><b>Informatik</b></a>
|
<a href = "../content/mathe.html" style = "padding: 5px; text-align: center; text-decoration: none; display: inline-block;"><b>Mathe</b></a>
|
<a href = "../content/physik.html" style = "padding: 5px; text-align: center; text-decoration: none; display: inline-block;"><b>Physik</b></a>
|
<a href = "../content/profile.html" style = "padding: 5px; text-align: center; text-decoration: none; display: inline-block;"><b>Dein Profil</b></a>
|
<?php
include_once 'includes/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>
</nav>