eis-website/ueber_uns.html

53 lines
1.8 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Über mich Lena</title>
<link rel="stylesheet" href="css/style.css">
<link rel="icon" href="img/favicon.png" type="image/png">
</head>
<body>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="ueber_uns.html">Über mich</a></li>
<li><a href="eis_projekt.html">EIS Projekt</a></li>
<li><a href="kontakt.html">Kontakt</a></li>
<li><a href="impressum.html">Impressum</a></li>
<li><a href="notenrechner.html">Notenrechner</a></li>
<li><a href="textanalyse.html">Textanalyse</a></li>
<li><a href="quiz.html">Quiz</a></li>
</ul>
</nav>
<main>
<header>
<img src="img/logo.svg" alt="Logo" style="height: 40px;">
<h1>Über mich</h1>
<p>Wer ich bin und was ich mache.</p>
</header>
<section>
<h2>Das Team</h2>
<p>Ich bin Studierende im Kurs <strong>Einführung in interaktive Softwareanwendungen (EIS)</strong> im Sommersemester 2025.</p>
<p>In diesem Kurs arbeiten wir an Web-Technologien, lernen den Umgang mit HTML, CSS und JavaScript und setzen unsere ersten Projekte auf einem echten Webserver um.</p>
</section>
<section>
<h2>Unsere Ziele</h2>
<ul>
<li>Verständnis von modernen Web-Standards</li>
<li>Entwicklung benutzerfreundlicher Interfaces</li>
<li>Sicherer Umgang mit Linux-Servern und Terminals</li>
</ul>
</section>
<a href="assets/projektinfo.pdf" download>Projektinfo herunterladen (PDF)</a>
</main>
<script src="script.js"></script>
</body>
</html>