wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Intro to HTML and CSS- Lecture 1 Review (HTML)

Total questions: 15

Worksheet time: 6mins

Name
Class
Date
1.

What is web development?

a)

Creating a website

b)

Developing as spider web

c)

Making the internet

d)

Building a computer

2.

What is HTML?

(select all correct answers)

a)

HyperText Markup Language

b)

Basic building block of the web

c)

You can create your own website with HTML

d)

A language used for web development

3.

What is always the first line in HTML?

a)

<html>

b)

<!DOCTYPE HTML>

c)

<body>

d)

<head>

4.

What goes after <!DOCTYPE HTML> ?

a)

<html>

b)

<body>

c)

<head>

d)

</!DOCTYPE HTML>

5.

<head> and <body> elements are in the <html> element

a)

True

b)

False

6.

Which header symbolizes the most importance?

a)

<h1>

b)

<h3>

c)

<h5>

d)

<h6>

7.

Which header symbolizes the least importance?

a)

<h1>

b)

<h3>

c)

<h5>

d)

<h6>

8.

What is an empty tag?

a)

</tagname>

b)

A tag that does not have a name

c)

Tags that does not have an end tag

d)

An empty space

9.

Which tags do we use when we write a paragraph?

a)

<head> </head>

b)

<br>

c)

<p> </p>

d)

<a> </a>

10.

What is <hr> ?

(select all correct answers)

a)

Horizontal ruler

b)

Empty tag

c)

A horizontal line going across the screen

d)

Can be used to separate content

11.

Which element is the correct way to link a website?

a)

<img src = "link.com"> Visit Link </img>

b)

<a href = "link.com"> Visit Link </a>

c)

<img src = "link.com">

d)

<a href = "link.com">

12.

Which type of lists did we learn?

(select all correct answers)

a)

Unordered List

b)

Ordered List

c)

Description List

d)

All of the above

13.

Unordered List is bullet points

a)

True

b)

False

14.

Ordered List is bullet points

a)

True

b)

False

15.

What is true for images?

(select all correct answers)

a)

Uses the <img> tag

b)

Empty tag

c)

Uses the src attribute to specify the location of the image

d)

Structure looks like this:

<img src = "image.png">