HTML
CSS
HOW INTERNET WORKS
JAVASCRIPT & API
ACCESSIBILITY & SECURITY
100

HTML is this kind of language.

What is a markup language?

100

You use this symbol in CSS to style a HTML class.

What is . ?

100

Computers use this (represented by 0s and 1s) in the process of transporting data using the Internet.

What are bits?

100

Some API's require this from developers to "unlock" its features.

What is an API key?

100

This kind of tool is used by those who are visually impaired to "see" webpages the way others do

What is a screen reader?

200

This kind of tag allows you to section off your text such that it is in its own paragraph.

What is the <p> tag?

200

You use this symbol in CSS to style HTML IDs

What is a hashtag #?

200
Your home on the Internet is represented by a string of numbers called this.

What is an IP address?

200

An API is similar to this thing in Python

What is a library?

200

This kind of HTML attribute allows the programmer to have descriptive text connected to certain parts of their website.

What is alt text?

300

Everything but the <!DOCTYPE html> goes between this tag.

What is the <html> tag?

300

You use this CSS property to set the color of font in an element

What is "color"?

300

Information sometimes gets broken down into these to be transported easily through the Internet.

What are packets?

300

This type of symbol is missing from the JavaScript code below:

function butterfly()

        alert("Look! Butterfly");

What are curly braces? { }

300

This is a special term for a hacker who hacks in order to test the security of systems.

What is a white hat hacker?

400

The error in the following HTML code:

<!DOCTYPE html>

<html>

<head></head>

<body>

WHOOOA this is website content

</html>

What is missing a closing </body> tag?

400

I want to change the font that my website uses. I would use this property to do so.

What is font-family?

400

This system translates domain names to IP addresses so browsers can load Internet resources.

What is DNS?

400

I would like to have a button I created to prompt a pop-up on screen with a message. I would use this Javascript built-in function to do so.

What is alert()?

400

This kind of "engineering" is done without coding - it involves manipulating or tricking a person into giving away sensitive data or granting you access.

What is social engineering?

500
This is the attribute you would add to an HTML element to group it with other elements in the styling.

What is class attribute? (Ex: <div class = "food">Pizza</div>)

500

I would use this property name + value to center my title

h1 {

    _____ : _____;

}


What is "text-align" and "center"? (text-align: center)

500

This kind of request would be made by the user to collect information from the server.

What is a POST request?

500

This style of APIs allows users to access data from servers by including all the information in the URL.

What is REST?

500

Name three kinds of web attacks (don't forget the "What is"?)

What are _, _, _?

accepted answers are in the web attack exploration link from today