my life
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>自己紹介</title> <style> body { font-family: "Noto Sans JP", Arial, sans-serif; margin: 0; padding: 20px; background-color: #f4f4f4; } .container { max-width: 800px; margin: 0 auto; background: white; padding: 20px; border-radius: 10px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); text-align: center; } h1, h2 { color: #333; } p { line-height: 1.6; } .profile-img { width: 200px; height: 200px; border-radius: 50%; object-fit: cover; margin-top: 10px; } </style> </head> <body> <div class="container"> <h1>自己紹介</h1> <img src="ramu22.jpg" alt="プロフィール写真" class="profile-img"> <h2>出身地</h2> <p>ネパール・ポカラ</p> <p>観光地:フェワ湖、サランコット</p> <p>名産:ダルバート(ネパール料理)、手工芸品</p> <h2>家族構成</h2> <p>家族は4人で、父、母、私、そして妹がいます。</p> <h2>学歴 & 得意科目</h2> <p>中学校と高校はネパールの Shree Amarsingh Secondary School で学びました。</p> <p>現在、日本の学校で学んでおり、来年卒業予定です。</p> <p>得意科目:翻訳、通訳</p> <h2>自己診断</h2> <p><strong>長所:</strong>コミュニケーション能力が高い、パソコンこ勤勉</p> <p><strong>短所:</strong>少し心配性なところがある</p> <h2>将来像</h2> <p>翻訳・通訳の仕事をして、多くの人の架け橋になりたい。</p> <p>多言語を活かし、異文化の架け橋となる仕事をしたいと考えています。</p> </div> </body> </html>