It's what the "p" in <p> stands for.
What is paragraph?
The content the users see goes inside this element.
What is body?
HTML stands for...
What is Hyper Text Markup Language?
Name a style language we can use with HTML.
What is CSS?
This command outputs the current working directory.
What is pwd?
This HTML tag will create the largest heading.
What is <h1>?
You can use this tag to make a numbered list.
What is <ol>?
The code that will show "HTML Jeopardy" in the browser tab.
What is <title>HTML Jeopardy</title>?
These are the three main parts of an HTML element.
What are opening tag, content, and closing tag?
This command lists all files and directories in the working directory (even the hidden ones.)
ls -a
This should be the first line of your HTML file.
What is <!DOCTYPE html>?
There are this many different headings.
What are six headings?
We can use these two elements to link an image.
What is <a> and <img>?
This is the file extension of a web page created in HTML programming. Hint: index._______
What is .html / .htm?
This command moves you into the folder you specify.
cd <folder|path>
The title tag is kept inside the __________.
What is <head>?
Give an example of an HTML attribute.
What is src, alt, href, ...?
Use these two tags to create a bulleted list.
What are <ul> and <li>?
What should values such as URLs and image locations always around them?
What are Quotation marks?
mkdir <name>
src stand for this.
What is source?
This is the purpose of the alt attribute of an image element.
What is, for accessibility purposes in case the images does not display properly?
The "li" in the <li> tag, stands for this.
What is list item?
Name the three tags you can use to make a navigation list.
What is <nav>, <ul>, <li>?
Use this command to create a new file in the working directory.
touch