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


<!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-color: #666;
            padding: 30px;
            text-align: center;
            font-size: 35px;
            color: white;
        }
        /* Left column - nav */
        nav {
            float: left;
            width: 30%;
            background-color: #ccc;
            padding: 20px;
            min-height: 400px;
        }
        nav ul {
            list-style-type: none;
            padding: 0;
        }
        nav ul li {
            padding: 8px 0;
        }
        nav ul li a {
            color: #000;
            text-decoration: none;
        }
        nav ul li a:hover {
            text-decoration: underline;
        }
        /* Right column - article */
        article {
            float: left;
            width: 70%;
            padding: 20px;
            background-color: #f1f1f1;
        }
        article img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 15px auto;
        }
        /* Clear floats */
        section::after {
            content: "";
            display: table;
            clear: both;
        }
        /* Footer */
        footer {
            background-color: #777;
            padding: 15px;
            text-align: center;
            color: white;
            clear: both;
        }
        /* Responsive */
        @media (max-width: 600px) {
            nav, article {
                width: 100%;
                min-height: auto;
            }
        }
        h1 {
            margin-top: 0;
        }
    </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" width="500" height="333">
            
            <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>