Intro to VS Code, HTML, and CSS
Class Schedule
- Intros: What do we want to learn about HTML/CSS?
- Activity: Style the class website
- Break
- Assignment 1
- Tutorial: Set up VS Code and extensions
Assignment 1
Here's a link to the Unit 1 assignment Due September 22 at 12pm
HTML Boilerplate
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Page Title</title>
</head>
<body>
<!-- Your HTML Goes Here -->
</body>
</html>