Il s'agit d'un projet simple et adapté aux débutants pour vous aider à apprendre le HTML et le CSS en créant une carte de profil élégante qui affiche une photo, nom, rôle et liens vers les réseaux sociaux.
Ce projet vous apprendra à :
Votre projet aura deux fichiers :
personal-profile_card/ │-- index.html ← The HTML structure └-- styles.css ← The CSS styling
Ce fichier contient la structure (ou squelette) de la page web. Voici à quoi cela ressemble :
<!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; }
Fond et centrage :
Le corps centre la carte de profil à l'aide de Flexbox et définit une couleur d'arrière-plan bleu clair.
Style de la carte de profil :
Style d'image :
Style du texte :
Stylise le nom et le rôle avec différentes tailles et couleurs de police.
Liens sociaux :
Téléchargez les fichiers :
Téléchargez ou copiez les fichiers index.html et styles.css.
Ouvrez le fichier HTML :
Double-cliquez sur le fichier index.html pour l'ouvrir dans votre navigateur.
Modifier le contenu :
Expérimenter avec CSS :
Essayez de changer les couleurs, les polices et les tailles dans styles.css pour voir comment cela affecte le design !
Bon codage ! ??
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!