30Days of HTML CSS

[30 Days of HTML CSS] Day 01 | Semantic HTML Structure

하나둘세현 2023. 11. 17. 14:31
728x90

<!DOCTYPE html>
<html>
  <head>
    <title>Semantic HTML Structure</title>
    <link rel="stylesheet" href="style.css" />
  </head>
  <body>
    <div id="contianer">
      <header>Page Header</header>
      <nav>
        <ul>
          <li><a href="Youtube.com">Youtube</a></li>
          <li><a href="Naver.com">Naver</a></li>
          <li><a href="google.com">Google</a></li>
        </ul>
      </nav>
      <main>Main Content</main>
      <footer>Footer</footer>
    </div>
  </body>
</html>

 

Day 01은 시멘틱 HTML 구조의 이해를 돕기 위해서 HTML 코드만 작성하면 된다.

다만 영어를 이해하는데 시간이 걸리뿐 특별한 어려움은 없었다.

 

 

https://codedamn.com/challenge/30-days-of-html-css

 

30 Days of HTML CSS - Codedamn

Level up your coding skills with a daily coding challenge. Compete and share your progress every day and become a better developer.

codedamn.com

 

728x90