What does the "p" in <p> stand for?
Paragraph
Almost all of our content the user sees goes in which element?
body
How many different headings are there?
6 Headings
What does HTML stand for?
Hyper Text Markup Language
The end of the HTML document
</html>
What is <a>
an anchor tag used to create links
How do you change the background color of an html page?
background-color: color;
The title tag is kept inside the __________.
<head>
Where do we use <title> tag
inside <head>tag
What happens when we use <ol> tag?
It starts an ordered list.
Which CSS property will change the alignment of text?
text-align: value; (center, left, right, justify)
What tag do we use to go to the next line in HTML
<br>
What word is used to change the text color?
What is color?
Which character is used to indicate an end tag?
/ OR Forward slash
Name one HTML tags that do not need closing tags
<br> <img> <input>
What should be the first line of your HTML files?
<!DOCTYPE html>
What attribute shows the alternate text for an image, if the user for some reason cannot view it.
alt =" "
How do you create a class?
In the style sheet use the (period) . to activate the class.
What happens when you use <u>
get Underline text
Creates a line break on the resulting page
<br> tag
How can I color a certain paragraph in HTML
Font tag , color feature
What defies highlighted text
<mark>
How do you fix the following:
<img a="summer.jpg" alt="summer" />
Change the a to src
What is the proper format if I want a solid border that five pixels wide with the color of it being yellow.
border: solid 5px yellow;
OR
border-style: solid;
border-color: yellow;
border-width: 5px;
This is the file extension of a web page created in HTML programming. Hint: index._______
What is .html / .htm?