For internal CSS, you should put your CSS code between these tags.
<style>
Do control structures require curly brackets?
Yes!
Most lines of Java code must end with this punctuation mark.
semicolon
HTML uses this type of bracket.
pointy brackets. <>
Piece of code that teaches Karel a new command.
Method
You can use this type of CSS to apply the same theme to multiple HTML files.
External CSS
This control structure makes Karel do something a specified number of times.
for loop
This word describes the proper way to capitalize methods in Java.
Camel Case
You should put the main content of your website between these tags.
<body>
Your commands for Karel should all be put inside of this method.
run method
<style> tags should go in this section of the HTML file.
<head>
This control structure tells Karel to do something if the condition is true.
if or if/else statement
A comment can be added to your code using what syntax?
// or /* */
This tag will put the name of your webpage in the browser tab.
<title>
This term is used when you create a new method.
Defining a method.
What type of brackets are used for CSS?
curly brackets. {}
Use this control structure to make Karel do something while a certain condition is true.
While loop
Curly brackets should line up with this.
The method, class, or control structure they "belong" to.
This tag does not require an end tag (name one).
<img>, <br>, or <hr>
This term is used when Karel is asked to perform a method.
Calling a method.
This CSS element changes the color of text.
color
You should use this control structure to make Karel jump a hurdle if she encounters one.
if or if/else statement
What condition is true when Karel has nothing in front of her?
This tag is the very first thing that goes into your HTML code.
<!DOCTYPE html>
All of your Karel methods should be contained inside of this.
A class