head / body

티케이·2022년 9월 25일
0

📌 head

웹 사이트의 환경을 설정
외부적으로 보여지지 않는 설정

<!DOCTYPE html>
<html lang="en">
<head>
    <title>Home - My first website.</title>
</head>



📌 body

사용자가 볼 수 있는 content를 보여줌
브라우저 화면 상에 보여질 내용들은 전부 body 태그에 있음

<body>
    <h1>
        Hello!
    </h1>
    <a href="https://google.com" target="_blank">Go to google.com</a>
    <img src ="https://www.google.com/images/branding/googlelogo.png">
</body>
</html>

profile
기억보단 기록하는 개발자

0개의 댓글