CSS
Control Structures
Karel Syntax
HTML
Karel Methods
100

For internal CSS, you should put your CSS code between these tags.

<style>

100

Do control structures require curly brackets?

Yes!

100

Most lines of Java code must end with this punctuation mark. 

semicolon

100

HTML uses this type of bracket.

pointy brackets. <>

100

Piece of code that teaches Karel a new command.

Method

200

You can use this type of CSS to apply the same theme to multiple HTML files. 

External CSS

200

This control structure makes Karel do something a specified number of times.

for loop

200

This word describes the proper way to capitalize methods in Java.

Camel Case

200

You should put the main content of your website between these tags.

<body>

200

Your commands for Karel should all be put inside of this method. 

run method

300

<style> tags should go in this section of the HTML file.

<head>

300

This control structure tells Karel to do something if the condition is true.

if or if/else statement

300

A comment can be added to your code using what syntax?

// or /* */

300

This tag will put the name of your webpage in the browser tab.

<title>

300

This term is used when you create a new method.

Defining a method.

400

What type of brackets are used for CSS?

curly brackets. {}

400

Use this control structure to make Karel do something while a certain condition is true.

While loop

400

Curly brackets should line up with this.

The method, class, or control structure they "belong" to.

400

This tag does not require an end tag (name one). 

<img>, <br>, or <hr>

400

This term is used when Karel is asked to perform a method. 

Calling a method.

500

This CSS element changes the color of text.

color

500

You should use this control structure to make Karel jump a hurdle if she encounters one.

if or if/else statement

500

What condition is true when Karel has nothing in front of her?

frontIsClear()
500

This tag is the very first thing that goes into your HTML code. 

<!DOCTYPE html>

500

All of your Karel methods should be contained inside of this. 

A class