앱)html5 기본 템플릿 basic structure

Posted by HULIA(휴리아)
2018. 6. 11. 17:17 프론트엔드/그래픽디자인_퍼블리싱
<!DOCTYPE html>
<html lang="en">
<head>
      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
       <meta name="viewport" content="width=device-width, initial-scale=1">
      
       <title>html5</title>
      
       <link rel="stylesheet" type="text/css" href="css/style.css?v=1.0">
       <link rel="shortcut icon" type="image/x-icon" href="images/favicon.png" />
        
       

</head>


<body>
       <header>
            <nav>
                 <ul>
                     <li></li>
                     <li></li>
                 </ul>
            </nav>
      <header>

       <!--contents1-->
       <section>
            <article>
                 <header>
                       <h2></h2>
                       <p></p>
                 </header>
                  <p>
              </article>
       </section>

       <aside>
                <h2></h2>
                <p>
       </aside>

       <footer>
               <p>
       </footer>


      <script type="text/javascript" src="js/scripts.js"></script>
</body>
</html>




https://www.webcodegeeks.com/html5/html5-page-structure-example/