Dies ist ein einfaches, anfängerfreundliches Projekt, das Ihnen beim Erlernen von HTML und CSS hilft, indem Sie eine stilvolle Profilkarte erstellen, die ein Foto anzeigt, Name, Rolle und Social-Media-Links.
In diesem Projekt erfahren Sie, wie Sie:
Ihr Projekt wird zwei Dateien haben:
personal-profile_card/ │-- index.html ← The HTML structure └-- styles.css ← The CSS styling
Diese Datei enthält die Struktur (oder das Grundgerüst) der Webseite. So sieht es aus:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Personal Profile Card</title> <link rel="stylesheet" href="styles.css"> </head> <body> <div> <h3> <strong>Explanation of Key Elements</strong> </h3> <ol> <li><p><strong>Profile Card Container</strong> (<div><br> A box that holds the image, name, role, and social links.</p></li> <li><p><strong>Image Tag</strong> (<img>)<br><br> Displays the profile picture.
Headings and Paragraph
for the user's role.
This file adds styling to your HTML. Here's what it looks like:
body { background-color: #f0f8ff; font-family: Arial, sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .profile-card { background-color: #ffffff; padding: 20px; border-radius: 15px; text-align: center; box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1); width: 300px; } .profile-img { width: 100px; height: 100px; border-radius: 50%; margin-bottom: 15px; } .profile-name { font-size: 1.5em; margin: 10px 0 5px; color: #333; } .profile-role { font-size: 1em; color: #777; margin-bottom: 20px; } .social-links { display: flex; justify-content: center; gap: 10px; } .social-link { text-decoration: none; color: #008cba; font-weight: bold; transition: color 0.3s ease; } .social-link:hover { color: #005f73; }
Hintergrund und Zentrierung:
Der Körper zentriert die Profilkarte mit Flexbox und legt eine hellblaue Hintergrundfarbe fest.
Profilkarten-Styling:
Bildgestaltung:
Textstil:
Gestaltet den Namen und die Rolle mit verschiedenen Schriftgrößen und Farben.
Soziale Links:
Dateien herunterladen:
Laden Sie die Dateien „index.html“ und „styles.css“ herunter oder kopieren Sie sie.
Öffnen Sie die HTML-Datei:
Doppelklicken Sie auf die Datei index.html, um sie in Ihrem Browser zu öffnen.
Inhalt bearbeiten:
Experimentieren Sie mit CSS:
Versuchen Sie, Farben, Schriftarten und Größen in der Datei „styles.css“ zu ändern, um zu sehen, wie sich das auf das Design auswirkt!
Viel Spaß beim Codieren! ??
Das obige ist der detaillierte Inhalt vonPersönliche Profilkartenschnittstelle. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!