바이오 대표

[HTML] 기본 서식 Head & Body 본문

Front_end

[HTML] 기본 서식 Head & Body

바이오 대표 2021. 7. 4. 14:16

<!DOCTYPE html # Brower 에게 이 파일이 HTML 파일이라는 것을 알려 준다. 

<html>

    <head> 보여지지 않는 웹사이트 정보 </head>

    <body> 보여지는 contents </body>

</html>

 

<!DOCTYPE html>  
<html>
    <head>
        <title>your title go here</title>
    </head>
    <body>
        <h1>
            You can show your contents here :) 
        </h1>
    </body>
</html>