wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Intro to HTML

Total questions: 15

Worksheet time: 11mins

Name
Class
Date
1.

Websites are made using which coding languages? (You can select multiple answers)

a)

HTML

b)

CSS

c)

Javascript

d)

Python

2.

What language is responsible for the basic structure and format of the website?

a)

HTML

b)

CSS

c)

Python

d)

Javascript

3.

Which language is responsible for the "style" of the website? (This includes colors, fonts, and positioning)

a)

HTML

b)

CSS

c)

Python

d)

Javascript

4.

What are the different elements of HTML are called? (Example: <h1>, <p>, <title>)

a)

Libraries

b)

Tags

c)

Events

d)

Variables

5.

Which tag specifies the name of the specific web page? (which is shown in the browser's title bar or in the page's tab)

a)

<html>

b)

<h1>

c)

<p>

d)

<title>

6.

Which tag contains all elements of your web page? (all of your code will be inside these tags)

a)

<html>

b)

<h1>

c)

<p>

d)

<title>

7.

Which tag is used to write a large heading?

a)

<html>

b)

<h1>

c)

<p>

d)

<title>

8.

Which tag do we use to write paragraphs?

a)

<html>

b)

<h1>

c)

<p>

d)

<title>

9.

Which line of code defines that this document is an HTML5 document?

a)

<title>HTML</title>

b)

<!DOCTYPE html>

c)

<tag>HTML</tag>

d)

<h1>HTML5</h1>

10.

Where do we typically find the title of the website? (The title tags are typically located inside these tags)

a)

In the <head> tags

b)

In the <body> tags

c)

In the <h1> tags

d)

In the <p> tags

11.

Where do we typically find all the visible contents, such as headings, paragraphs, images, hyperlinks, tables, lists, etc.?

a)

In the <head> tags

b)

In the <body> tags

c)

In the <h1> tags

d)

In the <p> tags

12.

Which of the following heading tags is the largest?

a)

<h1>

b)

<h3>

c)

<h5>

d)

<h6>

13.

What symbol do we use for our tags in HTML?

a)

( )

Parenthesis

b)

" "

Quotation Marks

c)

{ }

Brackets

d)

< >

Chevrons

14.

Which of the following lines of code is an example of an anchor element? (how to write a hyperlink)

a)

<www> Click here </www>

b)

<body> Click here </body>

c)

<link> Click here </link>

d)

<a href=" "> Click here </a>

15.

Which of the following is the proper way to close a paragraph tag in HTML?

a)

</p>

Forward Slash

b)

<;p>

Semicolon

c)

<:p>

Colon

d)

<"p">

Quotation Marks