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