selfstarter

기본 HTML 구조 본문

Web/Html

기본 HTML 구조

selfstarter 2020. 5. 22. 12:56

기본 HTML 구조

  • 예제 만들 때 마다 빠르게 기본 html 구조를 가져다 쓰려고 저장
    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="UTF-8">
    <title>Insert title here</title>
    <script src="http://code.jquery.com/jquery-3.1.1.js"></script>
    <script>
    $(function(){
      console.log('로드완료');
    })
    </script>
    </head>
    <body>
    </body>
    </html>
Comments