15 - HTML is OOP  🤯

Remember document.getElementById()  ?

That's right! HTML uses something called the DOM - the Document Object Model

Note - this lesson does not use a premade Git Repo. You will be making your own - from scratch!


What are we learning?

In this lesson we will:

Initialize a New Local Repository  💻

Create a New Repo in Github  🆕

Connect Local <> Remote   🔗

Setup the HTML File   📝

An HTML document requires a certain structure. It is the blueprint for the Document Object Model (DOM).


<!DOCTYPE html>
<html>

  <head>


  </head>

  <body>


  </body>
</html> 

Link the CSS and JS Files   🔗