Updated: Wednesday, October 11,2023-10-11 15:07:18

main
Shwetha Jayaraj 2023-10-11 15:07:21 -04:00
parent 7899e4adf5
commit 4c2c43ea52
3 changed files with 18 additions and 19 deletions

View File

@ -1,12 +1,12 @@
{
"recentFiles": [
{
"basename": "Laser Cutting",
"path": "Laser Cutting.md"
"basename": "Week 3 Slides",
"path": "Week 3 Slides.md"
},
{
"basename": "Slides",
"path": "Slides.md"
"basename": "Laser Cutting",
"path": "Laser Cutting.md"
},
{
"basename": "Drawing 2023-10-10 14.13.09.excalidraw",

View File

@ -37,7 +37,7 @@
"state": {
"type": "markdown",
"state": {
"file": "Slides.md",
"file": "Week 3 Slides.md",
"mode": "source",
"source": false
}
@ -157,7 +157,7 @@
"state": {
"type": "backlink",
"state": {
"file": "Laser Cutting.md",
"file": "Week 3 Slides.md",
"collapseAll": false,
"extraContext": false,
"sortOrder": "alphabetical",
@ -174,7 +174,7 @@
"state": {
"type": "outgoing-link",
"state": {
"file": "Laser Cutting.md",
"file": "Week 3 Slides.md",
"linksCollapsed": false,
"unlinkedCollapsed": true
}
@ -197,7 +197,7 @@
"state": {
"type": "outline",
"state": {
"file": "Laser Cutting.md"
"file": "Week 3 Slides.md"
}
}
}
@ -224,11 +224,11 @@
"obsidian-excalidraw-plugin:Create new drawing": false
}
},
"active": "f5d46d4c8d04c37a",
"active": "e0421441c1f9556c",
"lastOpenFiles": [
"Pasted image 20231011091043.png",
"Slides.md",
"Laser Cutting.md",
"Pasted image 20231011091043.png",
"Week 3 Slides.md",
"export/Slides/Pasted image 20231010141612.png",
"export/Slides/plugin/chalkboard/README.md",
"export/Slides/plugin/chalkboard/_style.css",
@ -240,7 +240,6 @@
"export/Slides/plugin/chalkboard/img/boardmarker-purple.png",
"export/Slides/plugin/chalkboard/img/boardmarker-red.png",
"export/Slides/plugin/chalkboard/img/boardmarker-yellow.png",
"export/Slides/plugin/chalkboard/img/chalk-blue.png",
"export/Slides/plugin/chalkboard/img",
"export/Slides/plugin/chalkboard/plugin (copy).js",
"export/Slides/plugin/chalkboard/plugin.js",

View File

@ -3,7 +3,7 @@
---
Greetings from Developer land. Last week we learned what real programmers use to upload their code for others to collaborate.
Greetings from Developer land. Last week we learned what real programmers use to upload their code for others to collaborate. Using **Github.ccom**
@ -22,7 +22,7 @@ Today we are going to start programming!
- HTML - the content and "bones" of a website
- CSS - the decorations, here we can add fancy decorations
- Javascript - animations can be added here
- Javascript - animations can be added here, game-making, scripting, etc..
---
@ -49,7 +49,7 @@ Let's start with #1.
---
### HTML version declaration  
### 1. HTML version declaration  
Every website starts with this line of code for HTML
Start by typing this line in your program
@ -64,7 +64,7 @@ Start by typing this line in your program
---
### Next is the Header!
### 2. Next is the Header!
```
<!DOCTYPE html>
@ -79,7 +79,7 @@ Start by typing this line in your program
---
### Next is the Body!
### 3. Next is the Body!
```
<!DOCTYPE html>
@ -88,10 +88,10 @@ Start by typing this line in your program
<head>
<title> This is the tile of my site!
</title>
</head>
<title> This is the tile of my site!
</title>
<body>
& This is where the text of a website goes