HTML is this kind of language.
What is a markup language?
You use this symbol in CSS to style a HTML class.
What is . ?
Computers use this (represented by 0s and 1s) in the process of transporting data using the Internet.
What are bits?
Some API's require this from developers to "unlock" its features.
What is an API key?
This kind of tool is used by those who are visually impaired to "see" webpages the way others do
What is a screen reader?
This kind of tag allows you to section off your text such that it is in its own paragraph.
What is the <p> tag?
You use this symbol in CSS to style HTML IDs
What is a hashtag #?
What is an IP address?
An API is similar to this thing in Python
What is a library?
This kind of HTML attribute allows the programmer to have descriptive text connected to certain parts of their website.
What is alt text?
Everything but the <!DOCTYPE html> goes between this tag.
What is the <html> tag?
You use this CSS property to set the color of font in an element
What is "color"?
Information sometimes gets broken down into these to be transported easily through the Internet.
What are packets?
This type of symbol is missing from the JavaScript code below:
function butterfly()
alert("Look! Butterfly");
What are curly braces? { }
This is a special term for a hacker who hacks in order to test the security of systems.
What is a white hat hacker?
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?
I want to change the font that my website uses. I would use this property to do so.
What is font-family?
This system translates domain names to IP addresses so browsers can load Internet resources.
What is DNS?
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()?
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?
What is class attribute? (Ex: <div class = "food">Pizza</div>)
I would use this property name + value to center my title
h1 {
_____ : _____;
}
What is "text-align" and "center"? (text-align: center)
This kind of request would be made by the user to collect information from the server.
What is a POST request?
This style of APIs allows users to access data from servers by including all the information in the URL.
What is REST?
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