> For the complete documentation index, see [llms.txt](https://www.advancedpython.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://www.advancedpython.net/day-4/activity-4.md).

# Activity 4

## Presentation

{% embed url="<https://docs.google.com/presentation/d/1OPzX7GBrU30Kq9f4FjYkNVGJZ_pVlX0WCWd73h0GxEQ/edit?usp=sharing>" %}

## Presentation Video

{% embed url="<https://youtu.be/Ubu9ru4E3IY>" %}

## Starter Code - index.html

```markup
<!DOCTYPE html>
<html>
    <head>
        <title>hello, world!</title>
    </head>
    <body>
        Welcome to Activity 4!
    </body>
</html>
```

## Starter Code - application.py

```python
from flask import Flask, render_template
app = Flask(__name__)

@app.route("/")
def index():
    return render_template('index.html')
```
