This tag looks the biggest on a web page.
What is <h1>?
This is the proper format to style an INLINE <h3> tag with a font color of red.
What is <h3 style="color:red>Hello</h3>
This tag places a horizontal line on your web page.
What is an <hr> tag?
Or
What is a horizontal rule tag?
These symbols create this in a css file: /* */
What is a comment?
This tag creates a space between paragraphs or sentences.
What is the <br> tag?
HTML is a markup language. (True or False)
What is TRUE?
This is the last tag on your web page.
What is </html>?
(must state a / is required)
This type of tag does not require a closing tag.
What is an empty container tag?
or (the following will also be accepted)
What is a <!DOCTYPE html>, <br> or <hr> tag?
These braces are called what? {}
What are curly braces?
target="_blank" attribute does this.
Opens a link to a new tab or window.
HTML uses these to display content or elements on a web page.
WHAT ARE TAGS?
This is the first tag in your web page structure.
<!DOCTYPE html>
This is the correct syntax for a paragraph tab.
What is <p>, </p>?
CSS stands for this.
What are Cascading Style Sheets?
This would go between the " " tags in an image source tag.
What is <img src="the url of the image source">
This is the correct section on your web page in which to style an INTERNAL <h1> element.
What is within the head section of the web page? (Within the style section is also an acceptable answer.)
I want my entire web page background in blue.
What is <body style="background-color:blue">
This tag will create an organized list.
What is an <ol> tag?
This tag links your HTML file to a CSS file.
What is the <link> tag?
Scrollamount and behavior are all attributes that affect this tag.
<marquee>
These are the three main tags in an HTML file.
What is <html>, <head>, <body>?
This adds a title to a website tab in the internet browser.
What is the <title> tag?
Lists, ordered or unordered, require this tag.
What is the <li></li> tag?
The tag that connects your HTML file to your CSS file goes here.
What is inside the <head> tag?
This language is the language that allows buttons to work when clicked.
What is JavaScript?