Here is the final version of the code at the end of the video.
Try running/editing this code in VS Code using the Live Server.
video/index.html
1 2 3 4 5 6 7 8 9101112
<!DOCTYPE html><html><head><title>CSS Introduction</title><linkrel="stylesheet"href="styles.css"></head><body><h1class="blue">Introduction to CSS</h1><p>This is just a quick introduction to CSS.</p><divclass="box"></div></body></html>