Skip to content

Commit

Permalink
add web lec1 slides and release hw1
Browse files Browse the repository at this point in the history
  • Loading branch information
madhavarshney committed Sep 12, 2023
1 parent 7c73e62 commit b1130ce
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion public/content/web/schedule-page.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ First day of lecture: Sept 11, 2023

| Week | Lecture | Lab Section | Homework/Project |
|------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------|---------------------------------------------------------------------------------|
| 1 | Introduction to HTML and the Web | Lab 1 | HW 1: HTML Basics |
| 1 | Introduction to HTML and the Web [Slides](https://docs.google.com/presentation/d/1UcdmKHfwTBa-SnR3G23D9XF4xvvrNzXVHSYczy8U_ug/edit) | Lab 1 | [HW 1: HTML Basics](#/hw/web/hw1) |
| 2 | CSS Basics and Browser Developer Tools | Lab 2 | HW 2: Personal Portfolio |
| 3 | Javascript Basics | Lab 3 | HW 3: JavaScript Playground |
| 4 | Using Git and Deployment (with Github Pages) & Introduction to APIs | Lab 4 | HW 4: Deployment |
Expand Down
8 changes: 4 additions & 4 deletions src/hw/web/hw1.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ Before we even get into the HTML, we will need to set up a couple things. First,

We need to create a folder that will hold all of the site's content, including its HTML file.

1. Create a folder on your computer called **"Cubstart Web"** or whatever you want to name it.
1. Create a folder on your computer called **"cubstart_web"** or whatever you want to name it.
2. Open your text editor of choice in the folder and create a new file.
3. Save (Ctrl/Command + S) that new file in your "Cubstart Web" folder and name it **index.html**.
3. Save (Ctrl/Command + S) that new file in your "cubstart_web" folder and name it **index.html**.
- Think of this as the homepage of your site!
4. Create a new folder within your "Cubstart Web" folder named "**assets**".
4. Create a new folder within your "cubstart_web" folder named "**assets**".
- This "assets" folder is where you can put images from your local computer that you want to display on your site (e.g. a selfie)

At the end of setup, your **Cubstart Web** folder should look something like this:
At the end of setup, your **cubstart_web** folder should look something like this:

![](/assets/hw1-setup.png)

Expand Down

0 comments on commit b1130ce

Please sign in to comment.