NEW
Font size
WorksheetsHTML G9
Total questions: 9
Worksheet time: 5mins
<p></p>
create a paragraph
add a page
insert a picture
<!DOCTYPE HTML>
places the HTML heading on a web page
tells the web browser the file is an HTML document
last line in an HTML document used to end the file
<body> </body>
contains tags for the text and images on a web page
contains the Cascading Style Sheet for a web page
contains the body of a web browser
<h1> </h1>
create a horizontal rule
make a hyperlink
add a heading
You want to set the heading to use the font Arial.
h1 { font-family: arial;
h1 { font: arial; }
heading 1 { font-family: arial; }
You want to align all images to the right.
text-align: right;
float: right;
alignment: right;
You must use web safe fonts when styling text.
TRUE
FALSE
Curly brackets { } are used for CSS.
TRUE
FALSE
The color of text can only be set using hex codes.
TRUE
FALSE
