2025 Core Lab: Systems

Matthew Kaney
kaneym@newschool.edu

Course Info

Class Links

Intro to VS Code, HTML, and CSS

Class Schedule

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>