웹 사이트의 환경을 설정
외부적으로 보여지지 않는 설정
<!DOCTYPE html>
<html lang="en">
<head>
<title>Home - My first website.</title>
</head>
사용자가 볼 수 있는 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>