Question of the Day Form
Code Combat
Loop - a programming structure used to repeat actions without the player needing to write the same lines of code over and over. What has to be done to the code so it will loop?
Google Classroom
Question of the Day Form
CodeHS
Booleans are “truth values” — they are data type that can contain either
the value true or false. Boolean statements are statements that
evaluate to be true or false. Write a Boolean statement.
Basic JavaScript and Graphics
Basic JavaScript and Graphics
The <div> tag defines a division or a section in an HTML document.
The <div> element is often used as a container for other HTML elements to style them with CSS.
Write the CSS to give a <div> a background color.
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
body{
background-color:Chartreuse;
}
No comments:
Post a Comment