wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

HTML Intro

Total questions: 12

Worksheet time: 6mins

Name
Class
Date
1.

HTML stands for

a)

Hypo Text Markup Language

b)

Hyper Text Markup Language

c)

Hyper Text Makeup Language

d)

Hyper Market Markup Language

2.

HTML is the standard markup language for creating Web pages. It describes the structure of a Web page.

a)

True

b)

False

3.

HTML elements tell the browser how to display the content. For example, this is a heading, this is a paragraph, this is a link, etc.

a)

True

b)

False

4.

This tag defines that this document is an HTML5 document.

a)

<html>

b)

<head>

c)

<!DOCTYPE html>

d)

<title>

5.

This tag is the root/start of an HTML page.

a)

<!DOCTYPE html>

b)

<title>

c)

<body>

d)

<html>

6.

This element contains the title and meta information/metadata about the HTML page.

a)

<!DOCTYPE html>

b)

<head>

c)

<html>

d)

<title>

7.

This tag specifies a title for the HTML page. Always displayed in the browser's title bar or in the page's tab.

a)

<html>

b)

<body>

c)

<head>

d)

<title>

8.

This tag defines the document's body, a container for all the visible contents, such as headings, paragraphs, images, hyperlinks, tables, lists, etc.

a)

<!DOCTYPE html>

b)

<html>

c)

<head>

d)

<body>

9.

This tag defines the largest heading.

a)

<h3>

b)

<h2>

c)

<h1>

d)

<h4>

10.

This tag defines a paragraph.

a)

<p>

b)

<pa>

c)

<h2>

d)

<par>

11.

An HTML element is defined by a start tag, some content, and an end tag. Which character is used to indicate an end tag?

a)

*

b)

/

c)

<

d)

^

12.

HTML elements are represented by tags, which are text enclosed within angle brackets <></>.

a)

True

b)

False