The format to close a <head> tag
What is </head>?
The command to set text color
What is color?
The syntax to define a function called mystery.
What is function mystery() {}?
The website we used to edit images
What is Pixlr?
The format for a comment.
What is <!-- This is a comment -->?
The opening tag for an ordered list
What is <ol>?
The command to set font type
What is font-family?
The command for a pop-up containing text
What is alert()?
The opening tag to insert an image called background.jpg into a website
What is <img src="background.jpg>?
The type of cipher that uses a phrase(a key) to decode and encode text
What is Vignere cipher?
The opening tag for a table element
What is <td>?
Fill in the blank to style a link that is being clicked on:
___ {
color: black;
}
What is a:active?
The characters that always come before a one-line comment in JavaScript
What is //?
DOUBLE JEOPARDY!
The word for an image that starts at one color and transitions to another.
What is a gradient?
The letters in HTML's meaning
What is Hypertext Markup Language?
The opening tag to make text bold
What is <strong>?
The command to remove the underline from a link
What is text-decoration: none?
The command to open a new window with the image "gradient.png"
What is open("gradient.png")?
The set of CSS commands to insert a background image to the body tag with the following link: https://www.fakeimage.com/
What is body{background-image: url("https://www.fakeimage.com/");}?
The command to create a password text box
What is <input type="password">?
The number of header tags that exist in HTML(Ex. <h1>, <h2>, etc.)
What is 6?
The command to fade from one color to another in 1 second, for example, when I hover over a link the color fades from blue to dark blue.
What is transition: 1s?
The command to create an integer variable named example with a value of 5
What is var example = 5?
The way to change the following tag to make the image clickable and to initiate a pop-up alert: <img src="image.png">
What is adding onclick="popup();" and defining function popup() { alert("Alert"); } in JavaScript?
The command to link a JavaScript document called script.js to an HTML document
What is <script src="script.js">?