What is the function of this tag: hr
creates a horizontal line
What is the function of this tag:
br
separates information on a page (break)
write what it would look like to style all h1 tags to have blue text
h1 {
color:blue;
}
<head>
<h1>heading 1</h1>
</head>
h1 should not go in the <head> tag
<a href:"LINK">
<a href = "LINK">
What is the function of this tag:
img
adds an image to webpage
What is the function of this tag:
title
adds a title to the wepage tab
what symbol is used to style by id?
#
I want to make it bold
<bold>it</bold>
I want to make it bold
<bold>it</bold>
<DOCTYPE html>
<html>
<head>
<title>this is title </title>
</head>
</html>
<!DOCTYPE html>
What is the function of this tag:
a
adds a link to a webpage
What is the function of this tag:
b
bolds text
What symbol is used to style by class
.
<img href = "LINK">
should be img src
<style>
fontfamily: arial;
</style>
<style>
font-family: arial;
</style>
What is the function of this tag:
li
adds an item to a list (list item)
What is the function of this tag:
p
gives a space to write text for webpage. makes a paragraph
if I want to make the MVP have a different text color. Should I style by tag, class or id?
id
<a = "link">
<a href = "LINK">
<head>
<title>webpage title</title>
<style>
table {
background-color = "salmon"
}
</style>
</head>
What is the function of this tag:
th
used for information in the header of the table
What is the function of this tag:
td
used for table information in the body of a table
if i want all images have a specific size. Should i style by tag, class, or id?
tag
<table>
<thead>
<td>table header</td>
</thead>
</table>
use <th> tag in thead. Not <td>
<head>
<title>Practice Test Webpage</title>
<style>
h1{
color:darkBlue
}
ol{
background: lightYellow;
border: 1px;
}
img{
width:200px;
}
</style>
color:darkBlue;