これは、写真を表示するスタイリッシュなプロフィール カードを作成することで、HTML と CSS を学ぶのに役立つシンプルな初心者向けプロジェクトです。名前、役割、ソーシャルメディアリンク。
このプロジェクトでは次の方法を学びます:
プロジェクトには 2 つのファイルがあります:
personal-profile_card/ │-- index.html ← The HTML structure └-- styles.css ← The CSS styling
このファイルには、Web ページの構造 (またはスケルトン) が含まれています。それは次のようになります:
<!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 の実験:
style.css で色、フォント、サイズを変更して、デザインにどのような影響があるかを確認してください。
コーディングを楽しんでください! ??
以上が個人プロファイル カード インターフェイスの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。