reading-notes

Class Three Notes (201)

More about HTML, CSS, and JS

Lecture Notes

string ${this is a variable} more string characters

for (let i=0; i < parkNRec.length; i++>) { //code executes here }

div-hover { color: green } /*color changed to green when hovered over the element selected

HTML, ordered and unordered lists1

CSS - The Box Model2

JS

let a = 10; let b = ‘dog’; let c = false; (a + c) + b; //evalueates to “10dog”

Back to main page

Things I want to know more about

I want to see how everything come together with loops and conditional statement. So far I have a pretty boring website and I hope to make it better and have a more smooth presentation.

References

  1. https://developer.mozilla.org/en-US/docs/Web/HTML 

  2. https://developer.mozilla.org/en-US/docs/Learn/CSS/Building_blocks/The_box_model 

  3. https://developer.mozilla.org/en-US/docs/Learn/JavaScript/First_steps/Arrays 

  4. https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Expressions_and_Operators 

  5. https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Building_blocks/conditionals 

  6. https://developer.mozilla.org/en-US/docs/Learn/JavaScript/Building_blocks/Looping_code