Looks like no one added any tags here yet for you.
Which of the following is a valid html tag
<h1>
What does html stand for
Hyper text markup language
Which of the following is an examole of metadata about a webpage
The title of webpage
Whixh of the following lines of html code will insert an image into a webpage
<img src=
Which of the following is the correct html code to create a hyperlink that displays and links to google.com
<a href=
What is the function of the < > tag
Create a line break on the resulting webpage
All of the color you see on conputer screen are the result of a mix of the same three colors . Wgat colors?
Red, green, blue
What is the purpose of the <title> tag in an html doc
It sets the title that appears in the browser tab
Which html tag is used to create an ordered list
<ol>
Which of the following lines of html code will correctly display image with hyperlink
<img src=”link png”>
<a href=”link”>
Which of the following html code snippets is the propper way to set the background color of <h1> tag to blue
<h1 style= “background-color:blue,”> hello</h1>
Which of the following defines table row
<tr>
Which of the following tags define a table header
<th>
True ir false: as long as you cite your sources you can put any image
False
Which of the following CSS properties is used to changr the text color of an html element
Color
What does the <td> rag represent in an html table
Table data
Which html tag is used to create a numbered list
<ol>
Which of the following is the correct way to libk an external css file to an html document
<link rel=”stylesheet” href=style.cas”>