wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

GPF ZARA Webpage design

Total questions: 70

Worksheet time: 39mins

Name
Class
Date
1.

Which of the following allow webpage content to be viewed on the internet

a)

Microsoft Word

b)

Google Sheet

c)

Chrome

d)

explorer

2.

Interpret this statement: <strong>Michelle</strong>

a)

It makes Michelle strong

b)

It highlights Michelle as being strong

c)

It will print out Michelle in bold font

3.

Which of the following is a valid CSS rule?

a)

<p> {

color:pink;

}

b)

p {

"color:pink";

}

c)

p {

color:pink;

}

d)

p {

color="pink";

}

4.

What does CSS stand for?

a)

Complicated Style Sheets

b)

Competent Styling Solutions

c)

Conflicting Style Sheets

d)

Cascading Style Sheets

5.

Which of the following is a valid class name?

a)

2large

b)

small text

c)

small_text

d)

2 large

6.

In the following CSS rule, what is the selector?

h1 {

font-family: Arial;

}

a)

CSS

b)

H1

c)

font-family

d)

Arial

7.

CSS rules should be between the <style></style> tags. Where should the <style></style> tags be placed?

a)

between the <head></head> tags

b)

between the <body></body> tags

c)

between the <css></css> tags

d)

anywhere on the html page

8.

Which of the following will select all the HTML elements with a class of large and set their font size to be 36px?

a)

large {

font-size:36px;

}

b)

.large {

font-size:36px;

}

c)

class="large:36px"

d)

class large {

font-size:36px;

}

9.

Which of the following will cause the <p> tags to have a font color of blue?

a)

p {

font-color:blue;

}

b)

p {

color:blue;

}

c)

p {

color=blue;

}

d)

p {

font:blue;

}

10.

h2 {

font-size:12px;

}

In the above CSS rule font-size:12px is the:

a)

selector

b)

value

c)

property

d)

declaration

11.

_______ is the language used for the structure and content of a webpage.

a)

HTML

b)

CSS

c)

Javascript

d)

Java

12.

_______ is used to code the style for a web page.

a)

HTML

b)

CSS

c)

Javascript

d)

Java

13.

What are shared on the Internet and are called as Web pages?

a)

Programs

b)

Cables

c)

Hypertext documents

d)

None

14.

Which program is used by web clients to view the web pages?

a)

Web browser

b)

Protocol

c)

Web Server

d)

Search Engine

15.

Web page editors works on a ____ principle.

a)

WWW

b)

HTML

c)

WYSIWYG

d)

WYGWYSI

16.

Which tag is used to display text in title bar of a web document?

a)

Body tag

b)

Meta tag

c)

Title tag

d)

Comment tag

17.

The language that instructs the browser on how to display the hypertext, and adds pictures to the document is __

a)

C

b)

COBAL

c)

HTML

d)

BASIC

18.

TITLE tag must be within ________

a)

Title

b)

Form

c)

Header

d)

Body

19.

Text within STRONG tag is displayed as ________

a)

Bold

b)

Italic

c)

List

d)

Indented

20.

UL Tag is used to ________

a)

Display the numbered list

b)

Underline the text

c)

Display the bulleted list

d)

Bold the text

21.

Which tag is used to display the numbered list?

a)

OL

b)

DL

c)

UL

d)

LI

22.

SCRIPT tag can be placed within ________

a)

Header

b)

Body

c)

Header and Body

d)

None of the above

23.

Using P tag will

a)

Start a new paragraph

b)

Break the line

c)

End the current paragraph

d)

None of the above

24.

What is the default type of ‘type’ attribute of <input> element?

a)

Special Characters

b)

Password

c)

Numerical

d)

Text

25.

Which of the following tag is used for drop down list?

a)

<dropdown>

b)

<text>

c)

<select>

d)

<textarea>

26.

Choose the correct option.

a)

HTML form elements can be of different types

b)

All of these

c)

HTML form elements are defined inside <form> tag

d)

HTML form elements are used for taking user input

27.

For defining a submit button which tag is used?

a)

<action submit>

b)

<button>

c)

<submit button>

d)

<submit>

28.

In HTML form <input type="text"> is used for -

a)

One paragraph

b)

Block of text

c)

None

d)

One line of text

29.

Which one of the following is a form element?

a)

Test box

b)

submit button

c)

all of these

d)

radio button

30.

Correct HTML Tag for the largest heading is?

a)

h6

b)

heading

c)

h1

d)

head

31.

All HTML tag must be enclosed in?

a)

?And!

b)

<And>

c)

{And}

d)

#And#

32.

Which tag in HTML is used to create a checkbox>

a)

<checkbox>

b)

<input type ="checkbox">

c)

<cb>

d)

<input type =checkbox>

33.

Which tag is used to display a picture in HTML?

a)

Picture

b)

Img

c)

Src

d)

Image

34.

HTML tags are surrounded by which type of brackets?

a)

Curly

b)

Round

c)

Square

d)

Angle

35.

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

a)

<break/>

b)

<br>

c)

<lb>

d)

<nbsp>

36.

Which of the following is a declaration for an HTML document?

a)

<html>

b)

<!Doctype Html>

c)

<body>

d)

<p>

37.

HTML uses

a)

Fixed tag defined by the language

b)

User-defined tags

c)

Pre-specified tags

d)

Tags only for linking

38.

Which attribute is used for activation of JavaScript?

a)

button

b)

checkbox

c)

url

d)

submit

39.

Which attribute defines the file-select field?

a)

file

b)

checkbox

c)

button

d)

text

40.

Which of the following is not used with password attribute?

a)

name

b)

size

c)

maxlength

d)

min

41.

Which element is used to create multi-line text input?

a)

text

b)

textarea

c)

submit

d)

radio button

42.

To put in a text box you use which code?

a)

<input type="information" id="name"/>

b)

<textbox id="name"/>

c)

<input type="text" id="name"/>

d)

<input type="text" id="name"/>

43.

Multiple Choice questions in html are referred to as...

a)

multiple choice

b)

radio buttons

c)

dot buttons

d)

circle buttons

44.

Which is the code to start putting in a drop down box?

a)

<select id="choices">

b)

<dropdown id="choices">

c)

<selection id="choices">

d)

<drop id="choices">

45.

To put in 2 multiple choice/ radio buttons you use which code?

a)

<input type="mc" name="choice" id="yes" />Yes

<input type="mc" name="choice" id="no" />No

b)

<input type="radio" name="choice" id="yes" />Yes

<input type="radio" name="choice" id="no" />No

c)

<input type="mc" name="choice" id="choice" />Yes

<input type="mc" name="choice" id="choice" />No

d)

<input type="radio" name="choice" id="choice" />Yes

<input type="radio" name="choice" id="choice" />No

46.

The code for a Reset button is

a)

<button type="reset">Reset</button>

b)

<input type="reset">Reset</input>

c)

<button type="submit">Reset</button>

d)

<reset>Reset</reset>

47.

You put which tags around your javascript code?

a)

<javascript> Code </javascript>

b)

<script javascript> Code </javascript>

c)

<script type="text/javascript"> Code </script>

d)

<form> Code </form>

48.

Checkbox buttons let users select one or more of a particular set of choices.

a)

True

b)

False

49.

<input type="submit" name="submit" id="submit" /> creates a reset button.

a)

True

b)

False

50.

You can import different CSS documents into other CSS documents.

a)

True

b)

False

51.

<td> is what?

a)

Defines a dorm in a table.

b)

Defines a cell in a table.

c)

Defines a definition in a table.

52.

<th> is what?

a)

Defines a header cell in a table. !

b)

Defines a head cell in a table.

c)

Defines a highlight in a table.

53.

Tables contain columns, rows, and cells.

a)

True

b)

False

54.

A <tr> tag can nest many <td> tags

a)

True

b)

False

55.

A table must have rows and cells defined

a)

True

b)

False

56.

The border attribute can't be styled with CSS.

a)

True

b)

False

57.

How many <h3> tags can be on a page?

a)

1 <h3> per <h1>

b)

Only 3 times

c)

Multiple

d)

Atmost 5

58.

<h1> tags should only be used once.

a)

True

b)

False

59.

<br/> is a bridge tag.

a)

True

b)

False

60.

List items can hold other unordered and ordered list.

a)

True

b)

False

61.

<a href="page.html">Makes this statement a link.</a>

a)

True

b)

False

62.

How do you create a drop down box on a form?

a)

With the select tag.

b)

With CSS

c)

With option tags.

d)

Don’t know

63.

How do you create a button on a form?

a)

With an <input type="submit"> tag.

b)

With a link.

c)

With a <form> tag.

d)

Don’t know

64.

Tags should?

a)

Always hang open

b)

Be correctly nested

c)

Play the game correctly

65.

A Title tag should be a…

a)

long description of the page.

b)

not worried about.

c)

short description of the page.

66.

<html>, <head>, <body>, and <ul> tags are required for every HTML page

a)

True

b)

False

67.

There are no self-closing HTML tags.

a)

True

b)

False

68.

The viewer never looks at the BODY tag’s content.

a)

True

b)

False

69.

Which character is used to indicate an end tag?

a)

<

b)

/

c)

*

d)

^

70.

Which of these elements are all <table> elements?

a)

<thead><body><tr>

b)

<table><tr><tt>

c)

<table><head><tfoot>

d)

<table><tr><td>