Tags 1
Tags 2
Styling
Fix the Error 1
Fix the Error 2
100

What is the function of this tag: hr

creates a horizontal line

100

What is the function of this tag:
br

separates information on a page (break)

100

write what it would look like to style all h1 tags to have blue text

h1 {

color:blue;
}

100

<head>
<h1>heading 1</h1>
</head>

h1 should not go in the <head> tag

100

<a href:"LINK">

<a href = "LINK">

200

What is the function of this tag:
img

adds an image to webpage

200

What is the function of this tag:
title

adds a title to the wepage tab

200

what symbol is used to style by id?

#

200

I want to make it bold
<bold>it</bold>

I want to make it bold
<bold>it</bold>

200

<DOCTYPE html>

<html>

<head>

<title>this is title </title>

</head>

</html>

<!DOCTYPE html>

300

What is the function of this tag:
a

adds a link to a webpage

300

What is the function of this tag:
b

bolds text

300

What symbol is used to style by class

.

300

<img href = "LINK">

should be img src

300

<style>

fontfamily: arial;

</style>

<style>

font-family: arial;

</style>

400

What is the function of this tag:
li

adds an item to a list (list item)

400

What is the function of this tag:
p

gives a space to write text for webpage. makes a paragraph

400

if I want to make the MVP have a different text color. Should I style by tag, class or id?

id

400

<a = "link">

<a href = "LINK">

400

<head>

<title>webpage title</title>

<style>

table {

background-color = "salmon"

}

</style>

</head>

background-color:salmon;
500

What is the function of this tag:
th

used for information in the header of the table

500

What is the function of this tag:
td

used for table information in the body of a table

500

if i want all images have a specific size. Should i style by tag, class, or id?

tag

500

<table>
<thead>
<td>table header</td>
</thead>
</table>

use <th> tag in thead. Not <td>

500

<head>

            <title>Practice Test Webpage</title>

            <style>

                h1{

                    color:darkBlue

                }

                ol{

                    background: lightYellow;

                    border: 1px;

                }

                img{

                    width:200px;

                }

            </style>

color:darkBlue;