wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Web Design Preassessment

Total questions: 40

Worksheet time: 20mins

Name
Class
Date
1.

What does HTML stand for?

a)

Hyperlinks and Text Markup Language

b)

Hyper Text Markup Language

c)

Home Tool Markup Language

2.

Who is making the Web standards?

a)

The World Wide Web Consortium

b)

Google

c)

Microsoft

d)

Mozilla

3.

Choose the correct HTML element for the largest heading:

a)

<h1>

b)

<h6>

c)

<heading>

d)

<head>

4.

What is the correct HTML element for inserting a line break?

a)

<break>

b)

<br>

c)

<lb>

5.

What is the correct HTML for adding a background color?

a)

<body style="background-color:yellow;">

b)

<background>yellow</background>

c)

<body bg="yellow">

6.

Choose the correct HTML element to define important text

a)

<b>

b)

<important>

c)

<i>

d)

<strong>

7.

Choose the correct HTML element to define emphasized text

a)

<italic>

b)

<em>

c)

<i>

8.

What is the correct HTML for creating a hyperlink?

a)

<a href="http://www.w3schools.com">W3Schools</a>

b)

<a url="http://www.w3schools.com">W3Schools.com</a>

c)

<a name="http://www.w3schools.com">W3Schools.com</a>

d)

<a>http://www.w3schools.com</a>

9.

Which character is used to indicate an end tag?

a)

/

b)

<

c)

^

d)

*

10.

How can you open a link in a new tab/browser window?

a)

<a href="url" new>

b)

<a href="url" target="new">

c)

<a href="url" target="_blank">

11.

Which of these elements are all <table> elements?

a)

<table><tr><tt>

b)

<thead><body><tr>

c)

<table><tr><td>

d)

<table><head><tfoot>

12.

Inline elements are normally displayed without starting a new line.

a)

True

b)

False

13.

How can you make a numbered list?

a)

<list>

b)

<ul>

c)

<dl>

d)

<ol>

14.

How can you make a bulleted list?

a)

<dl>

b)

<ol>

c)

<ul>

d)

<list>

15.

What is the correct HTML for making a checkbox?

a)

<input type="check">

b)

<checkbox>

c)

<check>

d)

<input type="checkbox">

16.

What is the correct HTML for making a text input field?

a)

<input type="textfield">

b)

<textinput type="text">

c)

<textfield>

d)

<input type="text">

17.

What is the correct HTML for making a drop-down list?

a)

<input type="dropdown">

b)

<list>

c)

<input type="list">

d)

<select>

18.

What is the correct HTML for making a text area?

a)

<input type="textbox">

b)

<textarea>

c)

<input type="textarea">

19.

What is the correct HTML for inserting an image?

a)

<img href="image.gif" alt="MyImage">

b)

<image src="image.gif" alt="MyImage">

c)

<img alt="MyImage">image.gif</img>

d)

<img src="image.gif" alt="MyImage">

20.

What is the correct HTML for inserting a background image?

a)

<body bg="background.gif">

b)

<body style="background-image:url(background.gif)">

c)

<background img="background.gif">

21.

An <iframe> is used to display a web page within a web page.

a)

There is no such thing as an <iframe>

b)

False

c)

True

22.

HTML comments start with <!-- and end with -->

a)

True

b)

False

23.

Block elements are normally displayed without starting a new line.

a)

True

b)

False

24.

Which HTML element defines the title of a document?

a)

<title>

b)

<meta>

c)

<head>

25.

Which HTML attribute specifies an alternate text for an image, if the image cannot be displayed?

a)

alt

b)

longdesc

c)

src

d)

title

26.

Which doctype is correct for HTML5?

a)

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 5.0//EN" "http://www.w3.org/TR/html5/strict.dtd">

b)

<!DOCTYPE html>

c)

<!DOCTYPE HTML5>

27.

Which HTML element is used to specify a footer for a document or section?

a)

<footer>

b)

<bottom>

c)

<section>

28.

In HTML, you can embed SVG elements directly into an HTML page.

a)

True

b)

False

29.

What is the correct HTML element for playing video files?

a)

<movie>

b)

<video>

c)

<media>

30.

What is the correct HTML element for playing audio files?

a)

<audio>

b)

<mp3>

c)

<sound>

31.

The HTML global attribute, "contenteditable" is used to:

a)

Return the position of the first found occurrence of content inside a string

b)

Update content from the server

c)

Specifies a context menu for an element. The menu appears when a user right-clicks on the element

d)

Specify whether the content of an element should be editable or not

32.

In HTML, onblur and onfocus are:

a)

Event attributes

b)

HTML elements

c)

Style attributes

33.

Graphics defined by SVG is in which format?

a)

CSS

b)

HTML

c)

XML

34.

The HTML <canvas> element is used to:

a)

create draggable elements

b)

manipulate data in MySQL

c)

display database records

d)

draw graphics

35.

In HTML, which attribute is used to specify that an input field must be filled out?

a)

required

b)

formvalidate

c)

placeholder

d)

validate

36.

Which input type defines a slider control?

a)

range

b)

search

c)

control

d)

slider

37.

Which HTML element is used to display a scalar measurement within a range?

a)

<measure>

b)

<range>

c)

<meter>

d)

<gauge>

38.

Which HTML element defines navigation links?

a)

<nav>

b)

<navigate>

c)

<navigation>

39.

In HTML, what does the <aside> element define?

a)

Content aside from the page content

b)

A navigation list to be shown at the left side of the page

c)

The ASCII character-set; to send information between computers on the Internet

40.

Which HTML element is used to specify a header for a document or section?

a)

<top>

b)

<header>

c)

<section>

d)

<head>