what does <p> tag called?
paragraph
how to change font ?
font-family
how do you print stuff ?
console.log()
what color is #00000
black
what color is my car
red
what is a div ?
container
What is this color #ffffff
white
how do you make a variable
let, var, const etc
how do you make an image into a link?
wrap in a tags
<a href="">image</a>
name 5 countries in africa
egypt, congo, south africa, kenya, morocco, sudan, etc
what is <br>
line break
how do you make a background image?
background-image: url("image link")
how do you make a random number?
Math.random()
what is this type of styling called
<p style="color: red">wewefwfwefewf</p>
inline
is hole io a good game
no
how do you make a ordered list ?
<ol>
<li></li>
</ol>
what is the name of youtube element?
iframe
what will this code print?
let test = true;
let test = false;
console.log(test)
error message
What will this code print?
let a = 10;
a+10;
a++;
a+=10;
console.log(a)
what is my favorite sandwich
BLT + extra bacon + mayo + toasted
what does div stand for?
content division
how do you make two images next to eachother?
put them in the same div in html, then display: inline-block in css
what will this code print?
console.log(Math.ceil(Math.floor(100.43253)))
100
what will this code print?
a=10;
a*=2;
let b = a;
console.log(a*b)
400
what is 2*2*2*2*2*2*2*2*2*2*2
2048