Answer the following questions with your group:
- How do you link a JavaScript file to an HTML document?
- How do you link a CSS file to an HTML document?
- What are the roles of HTML, CSS, and JavaScript on a webpage?
- What is the DOM? How is it related to HTML, CSS, and JavaScript?
- How does HTML get rendered into DOM?
- What are elements?
- What are attributes in HTML?
- How can we interact with HTML?
How do you link a JavaScript file to an HTML document?
How do you link a CSS file to an HTML document?
What are the roles of HTML, CSS, and JavaScript on a webpage?
What is the DOM? How is it related to HTML, CSS, and JavaScript?

The DOM represents the structural pieces of a web document as objects that can be accessed and manipulated. In other words, the DOM allows you as a software developer to do the following:
Create and build web documents.
Navigate the structure of web documents.
Add, modify, or delete elements and content within web documents.