ホンモノが学べるバストアップスクール

<!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: 'Arial', sans-serif;
            background-color: #ffe6f0;
            color: #333;
            text-align: center;
            margin: 0;
            padding: 0;
        }
        header {
            background-color: #ffb6c1;
            padding: 20px;
            font-size: 24px;
            font-weight: bold;
            color: white;
        }
        section {
            margin: 20px;
            padding: 20px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        footer {
            background-color: #ffb6c1;
            color: white;
            padding: 10px;
            position: fixed;
            bottom: 0;
            width: 100%;
        }
        a {
            color: #ff69b4;
            text-decoration: none;
        }
    </style>
</head>
<body>
    <header>バストアップスクール</header>
    
    <section id="about">
        <h2>スクール紹介</h2>
        <p>バストケアを学び、サロン開業を目指す女性のためのスクールです。</p>
    </section>
    
    <section id="testimonials">
        <h2>受講生の声</h2>
        <p>「スクールで学んで、夢のサロンを開業できました!」</p>
    </section>
    
    <section id="instructor">
        <h2>講師プロフィール</h2>
        <p>経験豊富な講師が、一人ひとりに丁寧に指導します。</p>
    </section>
    
    <section id="application">
        <h2>申し込みフォーム</h2>
        <p><a href="#">こちらからお申し込み</a></p>
    </section>
    
    <section id="sns">
        <h2>SNSリンク</h2>
        <p><a href="#">Instagram</a> | <a href="#">Facebook</a></p>
    </section>
    
    <section id="blog">
        <h2>ブログ</h2>
        <p><a href="#">最新の情報はこちらから</a></p>
    </section>
    
    <footer>
        &copy; 2025 バストアップスクール All Rights Reserved.
    </footer>
</body>
</html>

コメントを残す