Tuesday, May 30, 2017

Blog 39




Which of these variable names are valid ones?

var popGoesTheWeasel;

var 4size;

var zoom_zoom;

var size of rectangle

Thursday, May 25, 2017

Blog 38




Write the code to declare a variable "size" and set it to 100.

Tuesday, May 23, 2017

Blog 37

What do the commands below do?

ellipse(100,100,200,200);
fill(blue);





Thursday, May 18, 2017

Blog 36



Describe what the the command below does.

rect(100,200,50,20);



Sunday, May 14, 2017

Blog 35








Look at the code below.
What color will  "Good day!" be output in?

HTML
<p class="fancy"> Good day!</p>

CSS
.fancy {color:blue;}
p {color: pink;}

Blog 34




                                           h1


Write the CSS code to make all your h1 headings blue.

Thursday, May 11, 2017

Blog 33



To apply a style sheet to an HTML element you need to add a link to the style sheet in the HTML document.
List the HTML code for adding that link and tell where that link goes.

Tuesday, May 9, 2017

Blog 32




To add CSS style rules to an HTML page you need to do 2 things.
What are those 2 things?

Monday, May 1, 2017

Blog 29

What are the tags used for an unordered list with 3 items in it?
Do not put the carrot tags on your comment.