Newer
Older
C1232021 / kal.html
<!DOCTYPE html>
<html lang="ja">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>kanata homepage!</title>
    <link rel="stylesheet" type="text/css" href="main.css">
    <style>
        /* 背景色を緑に設定 */
        body {
            background-color: #2e7d32; /* 少し落ち着いた緑 */
            color: white;              /* 文字を白くして読みやすく */
            font-family: sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 20px;
            text-align: center;        /* 全体を中央寄せ */
        }

        img {
            max-width: 100%;           /* 画面からはみ出さないように */
            height: auto;
            border-radius: 8px;        /* 角を少し丸く */
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
            margin-top: 20px;
        }

        h1 {
            font-size: 2.5rem;
            border-bottom: 2px solid white;
            display: inline-block;
            padding-bottom: 10px;
        }
    </style>
</head>

<body>
    <h1>LoL(リーグ・オブ・レジェンド)</h1>
    
    <h2>チームベースのストラテジーゲームで、<br>140体以上のチャンピオンの中から選べます。</h2>
    
    <p>ジャンル:マルチプレイヤーオンラインバトルアリーナ (MOBA)</p>

    <div class="image-container">
        <img src="EGS_LeagueofLegends_RiotGames_S1_2560x1440-47eb328eac5ddd63ebd096ded7d0d5ab.jpeg" alt="LoLのゲーム画面イメージ">
    </div>
</body>
</html>