Menu
Coddy logo textTech

Profilkarte

Teil des Abschnitts Praktisches Frontend der HTML-Journey von Coddy. Lektion 32 von 35.

challenge icon

Aufgabe

Einfach

Dir wird eine vollständige HTML-Seite über Amelia Earhart, eine berühmte Fliegerin, gegeben. Die Seite verfügt bereits über Struktur und Inhalt, benötigt jedoch CSS-Styling, damit sie sowohl auf Mobilgeräten als auch auf größeren Bildschirmen gut aussieht.

Deine Aufgabe besteht darin, die fehlenden CSS-Stile hinzuzufügen, um das Design zu vervollständigen.

  1. Definiere CSS-Variablen für Primärfarbe, Textfarbe und Hintergrund. Wende sie auf den Hintergrund, den Text, die Überschrift und die Schaltfläche der Karte an.
  2. Gestalte das Layout für größere Bildschirme (min-width: 768px):
    • Zeige das Bild links und den Text rechts an (verwende flex-direction: row).
    • Lege passende Breiten für das Bild und den Inhalt fest.
  3. Wende auf größeren Bildschirmen object-fit: cover; auf das Bild an, damit es passend skaliert wird.

Probier es selbst

<!DOCTYPE html>
<html>
<head>
  <title>Explorer Profile Card</title>
  <style>
    /* Variables */


    body {
      font-family: Arial, sans-serif;
      background-color: #f4f4f9;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px;
    }

    .card {
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
      overflow: hidden;
      max-width: 600px;
      display: flex;
      flex-direction: column;
    }

    .card img {
      width: 100%;
      height: auto;
    }

    .card-content {
      padding: 20px;
      color: #000;
    }

    .card-content h2 {
      margin-top: 0;
      color: #555;
    }

    .card-content p {
      line-height: 1.5;
      margin-bottom: 20px;
    }

    .card-content button {
      background-color:#555;
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .card-content button:hover {
      background-color: #1b4f72;
    }

    /* Larger screens → side by side */
   

  </style>
</head>
<body>

  <div class="card">
    <img src="https://upload.wikimedia.org/wikipedia/commons/b/b2/Amelia_Earhart_standing_under_nose_of_her_Lockheed_Model_10-E_Electra%2C_small.jpg" alt="Amelia Earhart">
    <div class="card-content">
      <h2>Amelia Earhart</h2>
      <p>Amelia Earhart was a pioneering American aviator who became the first woman to fly solo across the Atlantic Ocean. She inspired generations with her courage and adventurous spirit.</p>
      <button>Read More</button>
    </div>
  </div>

</body>
</html>

Alle Lektionen in Praktisches Frontend

Übe selbstständig: Web-Playground