這是一個簡單且適合初學者的項目,可透過建立顯示照片的時尚個人資料卡來幫助您學習HTML 和CSS,姓名、角色和社交媒體連結。
這個項目將教您如何:
您的專案將有兩個檔案:
personal-profile_card/ │-- index.html ← The HTML structure └-- styles.css ← The CSS styling
該文件包含網頁的結構(或骨架)。它看起來像這樣:
<!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; }
背景與居中:
正文使用 Flexbox 將個人資料卡置中,並設定淺藍色背景顏色。
個人資料卡樣式:
影像樣式:
文字樣式:
使用不同的字體大小和顏色來設定名稱和角色的樣式。
社群連結:
下載檔案:
下載或複製index.html和styles.css檔。
開啟 HTML 檔案:
雙擊index.html 檔案以在瀏覽器中開啟它。
編輯內容:
使用 CSS 進行實驗:
嘗試更改 styles.css 中的顏色、字體和大小,看看它如何影響設計!
快樂編碼! ??
以上是個人資料卡介面的詳細內容。更多資訊請關注PHP中文網其他相關文章!