# Intro to Frontend

Here you can find module content and assignments for the Intro to Frontend module.

| Week | Topic                                                                                                                                                    | Preparation                                                                                                    | Assignment                                                                                                   | Session Plan                                                                                                     |
| ---- | -------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------ | ---------------------------------------------------------------------------------------------------------------- |
| 1.   | [The browser environment, DOM, event listeners and making requests](https://program.hackyourfuture.dk/course-content/foundation/intro-to-frontend/week1) | [Preparation](https://program.hackyourfuture.dk/course-content/foundation/intro-to-frontend/week1/preparation) | [Assignment](https://program.hackyourfuture.dk/course-content/foundation/intro-to-frontend/week1/assignment) | [Session Plan](https://program.hackyourfuture.dk/course-content/foundation/intro-to-frontend/week1/session-plan) |

## Learning goals

* [ ] Understand the browser environment
  * [ ] HTML vs CSS vs JS
  * [ ] Client vs server
  * [ ] Where is the script tag being loaded
* [ ] How to use the DOM to implement dynamic functionality
  * [ ] What is it and what do developers use the DOM for?
  * [ ] DOM manipulation
    * [ ] Get elements
    * [ ] Insert elements
    * [ ] Element manipulation (style, innerHTML, text)
    * [ ] Window object
    * [ ] Document object
* [ ] How to use Event Listeners to implement interactivity
  * [ ] Document onload
  * [ ] Click, submit, change, input - Focus on usage
* [ ] Displaying external data
  * [ ] Fetch (No promise explanation! Focus on usage)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://program.hackyourfuture.dk/course-content/foundation/intro-to-frontend.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
