Code Fellows courses Notes
This project is maintained by QamarAlkhatib
in this chapter, Duckett has summarized the lists into three different types:
< ol>
< li>Mix flour, baking powder, sugar, and salt.< /li>
< li>In another bowl, mix eggs, milk, and oil.< / li>
< li>Stir both mixtures together.< /li>
< li>Fill muffin tray 3/4 full.< /li>
< li>Bake for 20 minutes.< /li>
< /ol>
< ol>
< li>first item< /li>
< li>second item < /li>
< ul>
< li>second item first subitem< /li>
< li>second item second subitem< /li>
< li>second item third subitem< /li>
< /ul>
< /li>
< li>third item< /li>
< /ol>
< dl>
< dt>Sashimi< /dt>
< dd>Sliced raw fish that is served with
condiments such as shredded daikon radish or
ginger root, wasabi and soy sauce< /dd>
< dd>An Italian cheese usually made from whole
cow's milk (although it was traditionally made
from buffalo milk)< /dd>
< /dl>
This chapter talks about CSS boxes and we have dimensions(width, height), and we can limit the width and height with (max-width, min-width, max-height, min-height). And talk about the overflowing content(when the content is contained within a box is larger than the box itself), ANd talk about Border, Margin, and padding. Border, and its style and color, and how to do shorthand border. How to move the box to the center. And in CSS3, how to add images t the border, Box shadows.
is talking about arrays, and how to create an array. and what values we can use inside it, and how to access it and change the value here is a code example to creating an array:
var fruits;
fruits = ['Banana', 'Apple','Watermelon' ]
its talk about the truthy & falsy values, Also talk about the types of loop and how to use them:
for (let i = 1; i <= 5; i++){
document,write(i);
}
While(condition is true){
do something
}
do{
//do something
}
while(condition is true)
//do something