長くてすみません、float:flex1が反映されず困っています。
スペルミス、親要素の確認などしました。
HTML↓
<html lang="ja"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="icon" href="favicon.ico"> <title>初めてのLP</title> <meta name="description" content="30DAYSトライアル初級編の練習用LPです。最後まで頑張っていきましょう"> <link rel="stylesheet" href="./css/reset.css"> <link rel="stylesheet" href="./css/style.css"> </head> <body> <header> <div class="container"> <div class="header-left"> <h1>30DAYSトライアル</h1> </div> <div class="header-right"><div class="clear"></div> <ul class="header-nav" > <li class="header-nav-item"><a href="#">デイトラとは</a></li> <li class="header-nav-item"><a href="#">コース一覧</a></li> <li class="header-nav-item"><a href="#">お問い合わせ</a></li> </ul> </div> <div class="clear"> </div> </div> </header> <section class="top"> <img src="./img/main-vsual.png" alt=""> </section> <section class="about section"> <div class="container clear"> </div> <h2 class="section-title">デイトラとは</h2> <div class="about-left"> <img src="./img/about.png" alt="デイトラ とは"> </div> <div class="about-right"> </div> <p>デイトラ とは、無料で・迷わず・楽しく学べるプログラミング学習アプリです。毎日設定された課題をこなしていくだけで、未経験から30日でプログラミングスキルが身につき1日一題30日でプロのWEBエンジニアを目指しましょう!</p> </div> </div> </section> <section class="course section"> <div class="container"> <h2 class="section-title">コース一覧</h2> <div class="course-wrapper"> <div class="course-item"> </div> <img src="./img/web_first.png" alt="デイトラ初級編"> <p>HTML/CSS/Bootstrap</p> </div> <div class="course-item"> </div> <img src="./img/web_second.png" alt="デイトラ中級編"> <p>HTML/CSS/Javascript/jquery</p> </div> <div class="course-item"></div> <img src="./img/web_third.png" alt="デイトラ上級編"> <p>PHP/WordPress</p> </div> </div> </section> <section class="contact section"> <div class="container"> <h2 class="section-title"> お問合せ</h2> <p>さあ今日から30日間始めよう</p> <form action="#" method="post"> <input type="email" name="email" id="email"> <button type="submit">無料で始める</button> </form> </section> </header> <footer> </footer> </body> </html>```> - > CSS↓ body{ color:#082B48; font-family: Verdana, Geneva, Tahoma, sans-serif; line-height: 1.5; } img{ width: 100%; height: auto; } a{ text-decoration: none; color:#082B48 } a:hover{ opacity: 0.7; } .container{ width: 90%; max-width: 980px; margin: auto; } .header-title { font-weight: bold; font-size: 24px; } .clear{ clear: both; } .header{ padding: 20px 0; } .header-left{ float: left; } .clear{ clear: both; } .header-right{ float: right; } .header-nav-item{ float: left; margin-left: 50px; } .header-nav-item a{ font-size: 15px; font-weight: 600px; line-height: 36px; } top{ background-color: lightblue; height: 400px; line-height: 36px; } /* ======= */ /* section */ /* ======= */ .section{ padding: 60px 0; } .section-title{ font-style:32px; font-weight: bold; text-align: center; margin-bottom: 40px; } .about-left{ float: left; width: 48%; } .about-right{ float: right; width: 48%; .course-wrapper{ display: flex; }
特にHTML部分の記述が見づらいです。
テンプレートにもあるようにマークダウン記法で記述してください。
```HTML
ここにコードを書く
```
質問は編集できるので、やってみてください。回答が得られやすくなるはずです。
<code>のボタンを押すと簡単に作成できます。