This tag is used for basic text parargraphs.
What is the p tag?
<p></p>
This property sets the color of text.
What is the color property?
color:
The purpose that CSS serves in HTML documents.
What is adding style?
The purpose that JavaScript serves in HTML documents.
What is adding functionality/interactivity?
This tag is used for the largest heading on a web page.
What is the h1 tag?
<h1></h1>
This property sets the size of text.
What is the font-size property?
font-size:
This tag is placed in the head of an HTML document to set CSS properties.
What is the style tag?
<style></style>
This is used to create blank space on a webpage (as if hitting ENTER on a keyboard).
What is the line break tag?
<br>
This tag allows you to put an image on a webpage.
What is the img tag?
<img></img>
This property can be used to make text sans-serif.
What is the font-family property?
font-family:
This CSS selector is used to identify a single HTML element.
What is the id selector?
id=""
#""
List two formats for identifying specific colors (shades) in CSS properties.
What are RGB and hex?
rgb(R, G, B)
#xxxxxxxx
This tag displays the name of the page on the browser tab.
What is the title tag?
<title></title>
This property adds space around the outside of an element.
What is the margin property?
margin:
This CSS selector is used to identify multiple HTML elements that need the same style applied to all.
What is the class selector?
class=""
.""
This tag is placed in the body of an HTML document to add JavaScript code.
What is the script tag?
<script></script>
This tag, also called an anchor tag, allows you to put a link on your webpage.
What is the a tag?
<a></a>
This property adds space within an element between the border and the content.
What is the padding property?
padding:
Name at least two units of measure used in CSS properties to set the size of an element.
What are pixels/px, %, em?
This is used within an HTML tag to specify functionality, design, and/or behavior.
What is an HTML attribute?
<img src=""></img>