Search Header Logo
Unit 4 Practice Exam

Unit 4 Practice Exam

Assessment

Presentation

Computers

9th Grade

Hard

HTML

Standards-aligned

Created by

Jake Bohannon

Used 5+ times

FREE Resource

9 Slides • 24 Questions

1

Fill in the Blank

BELLRINGER:

What tag is used to tell what type of document you are working on?

2

Unit 4 Practice Exam

by Jake Bohannon

media
media

3

Fill in the Blank

What is HTML

4

​HTML

HTML is the standard markup language for Web pages.

With HTML you can create your own Website.

5

​Text Editor

Learn HTML Using Notepad or TextEdit

Web pages can be created and modified by using professional HTML editors.

6

Multiple Choice

HTML Language uses
1
Tabs
2
Tags
3
Punctuation
4
Quotations

7

Fill in the Blank

The HTML document itself begins with ________ and ends with _______..

8

​HTML Tags <> </>

​A HTML tag must be a

​Opening <>

OR

​Closing </>

9

Open Ended

Correct the following tag:

<Title

<head> Mr. Bohannon Class </head>

Title

10

Multiple Choice

<h> is
1
Header Tag
2
Headline Tag
3
Half of a tag
4
Closing header tag

11

Multiple Choice

</h> is
1
Header Tag
2
Headline Tag
3
Half of a tag
4
Closing header tag

12

Multiple Choice

<p> is
1
punctuation tag
2
closing paragraph tag
3
closing punctuation tag
4
paragraph tag

13

Multiple Choice

</p> is
1
punctuation tag
2
closing paragraph tag
3
closing punctuation tag
4
paragraph tag

14

Fill in the Blank

The visible part of the HTML document is between ________ and ________.

15

​Title Heading

  • ​The Element that is known as the doc type is <!Doctype HTML>

media

16

Multiple Choice

If this HTML Code was done what would be the out come? <b><h1> Hello World </h1></b>

1

Hello World will be a header and bold.

2

Hello World will be Bold.

3

Hello World will be a Header.

4

Hello World will not exist.

17

Fill in the Blank

What is the tags used for Line Break

18

​Line Break

In HTML, the <br> element creates a line break. You can add it wherever you want text to end on the current line and resume on the next.

19

Multiple Choice

<img> tag finds;
1
finds the image located at the a URL and the src attribute and then displays it.
2
finds the image located at the SRC in the URL attribute and then displays it.
3
Adds a cool picture
4
Does not work in HTML coding

20

Fill in the Blank

What is CSS?

21

​What is CSS

Cascading Style Sheets is a style sheet language used for describing the presentation of a document written in a markup language such as HTML

22

​CSS CONTINUED

CSS is the language we use to style an HTML document.

CSS describes how HTML elements should be displayed.

23

Fill in the Blank

3 Elements to a CSS Statement

Selector {Property: _______;}

24

​CSS

3 Elements to a CSS Statement

Selector

¢What HTML sections does it affect?

Property

¢What attribute of that HTML section will be affected?

Value

¢What change will be made to that attribute?

25

Multiple Choice

sets the color of words in a paragraph

1

h1 {

color: pink;

}

2

img {

color: pink;

}

3

body {

color: pink;

}

4

p {

color: pink;

}

26

Multiple Choice

What will this rule set create?


h1 {

text-decoration: underline overline dotted red;

}

1

red waves under the heading

2

red dots over and under the heading

3

red waves over and under the heading

4

red dots over the heading

27

Multiple Choice

TRUE OR FALSE: CSS is used to style web pages

1

True

2

False

28

Multiple Choice

What is missing from this HTML skeleton?


<!DOCTYPE html>

<html>

<body>

</body>

</html>

1

<head></head>

2

<div></div>

3

<img></img>

4

<head>

29

Multiple Choice

How do you change the font color with CSS?

1

font-color: green;

2

color: green;

3

change-font-color: green;

4

fontcolor=green;

30

Multiple Choice

Where should you put the link tag to connect your CSS and HTML file?

1

Between the <head> </head> in HTML

2

Between the <body> </body> in HTML

3

None of the above.

31

Multiple Choice

Which of the following is the correct CSS link tag?

1

<link rel="styles" href="stylesheet.css">

2

<link href="stylesheet">

3

<link rel="stylesheet" src="styles.css">

4

<link rel="stylesheet" href="styles.css">

32

Multiple Choice

Question image

The blue is called an _____________

1

Declaration

2

Selector

3

Property

4

Value

33

Multiple Choice

The code for the comment tag in CSS is
1
<!-- comment -->
2
<!-- comment >
3
/* comment /*
4
/* comment */

BELLRINGER:

What tag is used to tell what type of document you are working on?

Show answer

Auto Play

Slide 1 / 33

FILL IN THE BLANK