Загрузка данных


<!DOCTYPE html>
<html lang="de">
<head>
    <title>Mein Praktikum in University</title>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <style>
        * {
            box-sizing: border-box;
        }
        body {
            font-family: Arial, Helvetica, sans-serif;
            background-color: #e0f2f1;
            margin: 0;
        }
        /* Header с картинкой вместо цвета */
        header {
            background-image: url('header-bg.jpg');   /* ←←← поменяй на имя своей картинки */
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: 80px 30px;          /* больше высота, чтобы картинка хорошо смотрелась */
            text-align: center;
            position: relative;          /* нужно для overlay */
            color: white;
        }
        /* Тёмный полупрозрачный слой, чтобы текст был читаемым */
        header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.45);   /* можно менять 0.45 на 0.3–0.6 */
            z-index: 1;
        }
        /* Сам текст поверх overlay */
        header h2 {
            position: relative;
            z-index: 2;
            font-size: 42px;
            margin: 0;
            text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);  /* тень для лучшей читаемости */
        }
        /* Остальной код без изменений */
        nav {
            float: left;
            width: 30%;
            background-color: #ccc;
            padding: 20px;
            min-height: 450px;
        }
        nav ul {
            list-style-type: none;
            padding: 0;
        }
        nav ul li {
            padding: 10px 0;
        }
        nav ul li a {
            color: #000;
            text-decoration: none;
        }
        nav ul li a:hover {
            text-decoration: underline;
        }
        article {
            float: left;
            width: 70%;
            padding: 20px;
            background-color: #f1f1f1;
        }
        article img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 15px auto;
        }
        section::after {
            content: "";
            display: table;
            clear: both;
        }
        footer {
            background-color: #777;
            padding: 15px;
            text-align: center;
            color: white;
            clear: both;
        }
        @media (max-width: 600px) {
            nav, article {
                width: 100%;
                min-height: auto;
            }
        }
    </style>
</head>
<body>

    <header>
        <h2>Mein Praktikum in University</h2>
    </header>

    <section>
        <nav>
            <ul>
                <li><a href="#">Erster Tag</a></li>
                <li><a href="#">Computer zerlegen &amp; bauen</a></li>
                <li><a href="#">Windows und Linux installieren</a></li>
                <li><a href="#">HTML schreiben</a></li>
                <li><a href="#">Wichtige Computerteile</a></li>
            </ul>
        </nav>

        <article>
            <h1>Mein Praktikum im IT-Service der University Bremen</h1>
            
            <img src="Universitat_Bremen.png" alt="University Bremen">
            
            <p>Ich mache mein Praktikum an der University Bremen im IT-Service.</p>
            
            <p>Am ersten Tag habe ich einen Computer zerlegt und wieder gebaut. Dann habe ich Windows und Linux installiert.</p>
            
            <p>Jetzt schreibe ich HTML. Das ist interessant für mich.</p>
            
            <p><strong>Wichtige Teile im Computer:</strong> Prozessor, Grafikkarte und Motherboard. Für Windows 11 braucht man mindestens 8 GB RAM. Viele Computer laufen gut mit Windows 10 oder Linux.</p>
            
            <p><strong>Was ich gelernt habe:</strong> Ich habe gesehen, wie ein Computer innen aussieht. Ich habe gelernt, wie man Betriebssysteme installiert. HTML ist ganz neu für mich und macht auch Spaß.</p>
        </article>
    </section>

    <footer>
        <p>Mein Praktikum bei der University Bremen • April 2026</p>
    </footer>

</body>
</html>