The tag used for body text.
What is... a <p> tag?
The meaning of the "src" part of image codes.
What is... source?
The property that can be used to change the color of something through the CSS.
What is... the "color:" property?
The kind of code you need to add to create breaks in paragraphs and create more space on your webpage.
What is... a <br> element?
The name of the page on which all the content for a webpage is found.
What is... the HTML file?
The tags that create headings on your webpage.
What are... <h> tags?
The kinds of image sources that code.org accepts. (Must name at least one)
What is... .jpeg, .jpg, and .png?
How you change the size of the font through CSS.
What is... the "font-size:" property?
The kind of code surrounds a clickable link.
What is... an <a> tag?
The tag that starts off every HTML webpage.
What is... <!DOCTYPE html>?
The largest heading tags.
What is... the <h1> tag?
The part of the image tag that codes for a short message to pop up in place of an image when it cannot load.
What is... the "alt" attribute?
The property that adds space around an element.
What is... the "margin:" property?
The code that can be used to create a line to split up elements in HTML.
What is... an <hr> element?
The tag that closes each webpage.
What is... </html>?
The smallest heading tags.
What is... the <h6> tag?
The code used to place an image into a webpage.
What is... <img src="IMAGE.jpg" alt="Image description" />?
The CSS property that allows for the styling of only select elements, all different from the rest.
What is... a <div> property?
The element that is used to create a bulleted, numbered list.
What is... The <ol> element?
The two main parts of every HTML document.
What is... the <head> and the <body>?
The number of different-sized heading tags.
The code used to link images either internally or externally.
What is... <a href="LINK"><img src=IMAGE.png></a>?
The way you start off naming a class.
What is... with a "." (example ".class {}")?
The element that is used to create lists with only indentations and no bullets.
What is... the <dl> element?
The code used to link an HTML file to a CSS file to style it.
What is... <link rel="stylesheet" href="TITLE.css">?