Updated: Tuesday, October 10,2023-10-10 14:24:05

main
Shwetha Jayaraj 2023-10-10 14:24:10 -04:00
parent ef6a20156d
commit fae740cbe8
3 changed files with 35 additions and 42 deletions

View File

@ -4,14 +4,14 @@
"basename": "Slides",
"path": "Slides.md"
},
{
"basename": "Drawing 2023-10-10 14.12.43.excalidraw",
"path": "Excalidraw/Drawing 2023-10-10 14.12.43.excalidraw.md"
},
{
"basename": "Drawing 2023-10-10 14.13.09.excalidraw",
"path": "Excalidraw/Drawing 2023-10-10 14.13.09.excalidraw.md"
},
{
"basename": "Drawing 2023-10-10 14.12.43.excalidraw",
"path": "Excalidraw/Drawing 2023-10-10 14.12.43.excalidraw.md"
},
{
"basename": "Advanced Slides",
"path": "Coding Tips (Classical)/Project Vault/About Obsidian/Advanced Slides.md"

View File

@ -210,47 +210,12 @@
"obsidian-excalidraw-plugin:Create new drawing": false
}
},
"floating": {
"id": "71f1bb7677d285db",
"type": "floating",
"children": [
{
"id": "1f43a7692e7224b9",
"type": "window",
"children": [
{
"id": "bc220a5b164fae0c",
"type": "tabs",
"children": [
{
"id": "eaa4376259c1709b",
"type": "leaf",
"state": {
"type": "excalidraw",
"state": {
"file": "Excalidraw/Drawing 2023-10-10 14.13.09.excalidraw.md"
}
}
}
]
}
],
"direction": "vertical",
"x": 208,
"y": 23,
"width": 1024,
"height": 800,
"maximize": false,
"zoom": 0
}
]
},
"active": "e0421441c1f9556c",
"lastOpenFiles": [
"Pasted image 20231010141612.png",
"Excalidraw/Drawing 2023-10-10 14.12.43.excalidraw.md",
"Excalidraw/Drawing 2023-10-10 14.13.09.excalidraw.md",
"Slides.md",
"Pasted image 20231010141612.png",
"Excalidraw/Drawing 2023-10-10 14.12.43.excalidraw.md",
"Excalidraw",
"Coding Tips (Classical)/Project Vault/About Obsidian/Advanced Slides.md",
"Coding Tips (Classical)/Project Vault/About Obsidian/Obsidian Guides/Notable Obsidians.md",

View File

@ -26,4 +26,32 @@ Today we are going to start programming!
---
## Step 1. Open TextE
## Step 1. Open TextEdit
Believe it or not this is all we need to actually start coding (who needs Github anyways)
---
## Step 2. HTML Building blocks
Making the structure
There are 3 parts that tie into basic HTML structure. Think of these as the “building blocks” of a web page:  
1. HTML version declaration  
2. Heading(s)  
3. Body
Let's start with #1.
---
### HTML version declaration  
Every website starts with this line of code for HTML
```
!
```