# HTML Basics

https://www.w3schools.com/html/html_intro.asp (opens new window)

# Structure

<html>
<head>

</head>

<body>

<!-- tags  -->

</body>
</html>

# DOM

document
├─ div
├─ section
│  ├─ div
│  ├─ div
│  └─ div
└─ section
   ├─ div
   ├─ div
   └─ div

#