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

main
Shwetha Jayaraj 2023-10-18 15:11:14 -04:00
parent 0d629c852d
commit 1c6e3cd616
3 changed files with 52 additions and 17 deletions

View File

@ -1,12 +1,12 @@
{ {
"recentFiles": [ "recentFiles": [
{ {
"basename": "HTML Group Project", "basename": "HTML & CSS Tricks",
"path": "HTML Group Project.md" "path": "HTML & CSS Tricks.md"
}, },
{ {
"basename": "HTML Tricks Part 2", "basename": "HTML Group Project",
"path": "HTML Tricks Part 2.md" "path": "HTML Group Project.md"
}, },
{ {
"basename": "Potentiometers & Analog SerialReader", "basename": "Potentiometers & Analog SerialReader",

View File

@ -21,7 +21,7 @@
"state": { "state": {
"type": "markdown", "type": "markdown",
"state": { "state": {
"file": "HTML Tricks Part 2.md", "file": "HTML & CSS Tricks.md",
"mode": "source", "mode": "source",
"source": false "source": false
} }
@ -41,14 +41,22 @@
"state": { "state": {
"type": "markdown", "type": "markdown",
"state": { "state": {
"file": "HTML Group Project.md", "file": "HTML & CSS Tricks.md",
"mode": "source", "mode": "source",
"source": false "source": false
} }
} }
},
{
"id": "0dd4a19ebbb7cf04",
"type": "leaf",
"state": {
"type": "empty",
"state": {}
}
} }
], ],
"currentTab": 3 "currentTab": 4
} }
], ],
"direction": "vertical" "direction": "vertical"
@ -85,7 +93,7 @@
"state": { "state": {
"type": "search", "type": "search",
"state": { "state": {
"query": "windte", "query": "tag:#this",
"matchingCase": false, "matchingCase": false,
"explainSearch": false, "explainSearch": false,
"collapseAll": false, "collapseAll": false,
@ -103,7 +111,7 @@
} }
} }
], ],
"currentTab": 1 "currentTab": 2
} }
], ],
"direction": "horizontal", "direction": "horizontal",
@ -123,7 +131,6 @@
"state": { "state": {
"type": "backlink", "type": "backlink",
"state": { "state": {
"file": "HTML Group Project.md",
"collapseAll": false, "collapseAll": false,
"extraContext": false, "extraContext": false,
"sortOrder": "alphabetical", "sortOrder": "alphabetical",
@ -140,7 +147,6 @@
"state": { "state": {
"type": "outgoing-link", "type": "outgoing-link",
"state": { "state": {
"file": "HTML Group Project.md",
"linksCollapsed": false, "linksCollapsed": false,
"unlinkedCollapsed": true "unlinkedCollapsed": true
} }
@ -162,9 +168,7 @@
"type": "leaf", "type": "leaf",
"state": { "state": {
"type": "outline", "type": "outline",
"state": { "state": {}
"file": "HTML Group Project.md"
}
} }
} }
] ]
@ -190,9 +194,9 @@
"obsidian-excalidraw-plugin:Create new drawing": false "obsidian-excalidraw-plugin:Create new drawing": false
} }
}, },
"active": "43175014d1650e7c", "active": "0dd4a19ebbb7cf04",
"lastOpenFiles": [ "lastOpenFiles": [
"HTML Tricks Part 2.md", "HTML & CSS Tricks.md",
"HTML Group Project.md", "HTML Group Project.md",
"Excalidraw/Drawing 2023-10-17 18.01.00.excalidraw.md", "Excalidraw/Drawing 2023-10-17 18.01.00.excalidraw.md",
"Excalidraw", "Excalidraw",

View File

@ -27,20 +27,48 @@ Remember how we turned it into a web page? _quickly go over it_
--- ---
# Changing the Background Color
```css
/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
HTML content. To learn how to do something, just try searching Google for questions like
"how to change link color." */
body {
background-color: pink;
color: green;
font-family: Times;
}
```
---
## DESIGN CHALLENGE: WEB PROGRAMMING: HTML PT 2 ## DESIGN CHALLENGE: WEB PROGRAMMING: HTML PT 2
This week we want to ✨spruce✨ up our website a bit more so that it looks like a presentable one. We will be getting in groups to present group designs. The challenge is on! This week we want to ✨spruce✨ up our website a bit more so that it looks like a presentable one. We will be getting in groups to present group designs. The challenge is on!
---
#### Tip - Adding an image to your site: #### Tip - Adding an image to your site:
Go to google images and **right-click** on any image. You should see a "Copy Link Address" and click that. Paste it into "URL-here.jpg" Go to google images and **right-click** on any image. You should see a "Copy Link Address" and click that. Paste it into "URL-here.jpg"
```
<img src="URL_HERE.jpg"> #input image code for html <img src="URL_HERE.jpg"> #input image code for html
Hint: make sure for the Link address that it's either a .jpg or a .png format! Hint: make sure for the Link address that it's either a .jpg or a .png format!
```
```
<img src="URL_HERE.jpg" <img src="URL_HERE.jpg"
style="width:100%;"> #this adjusts the size of the image style="width:100%;">
```
this adjusts the size of the image
---
Tip : Tip :
@ -50,6 +78,8 @@ Add a Search bar into your site
<input type="search" name="search"> <input type="search" name="search">
``` ```
---
Eventually CSS will be needed for multiple page creation in order to maintain consistency. Eventually CSS will be needed for multiple page creation in order to maintain consistency.
@ -70,6 +100,7 @@ Linking to different parts of your code on HTML:
``` ```
---
Shwetha Jayaraj - all rights reserved. Shwetha Jayaraj - all rights reserved.