wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

HTML and CSS Quiz

Total questions: 30

Worksheet time: 15mins

Name
Class
Date
1.

Which HTML tag is used to insert an image?

a)

<pic>

b)

<img>

c)

<image>

d)

<src>

2.

Which attribute is required in the <img> tag?

a)

href

b)

src

c)

link

d)

id

3.

Which code correctly inserts the image logo.jpg?

a)

<img>logo.jpg</img>

b)

<image src="logo.jpg">

c)

<img src="logo.jpg" alt="logo">

d)

<img href="logo.jpg">

4.

Which tag is used to create an ordered list?

a)

<ul>

b)

<li>

c)

<ol>

d)

<list>

5.

How do you add list items?

a)

<item>

b)

<li>

c)

<ol>

d)

<ul>

6.

Which code correctly creates an ordered list?

a)

<ol><li>Item</ol>

b)

<ul><li>Item</li></ul>

c)

<ol><li>Item</li></ol>

d)

D.<list ordered>

7.

Which HTML tag is used to create a table?

a)

<tb>

b)

<table>

c)

<tab>

d)

<t>

8.

Which tag creates a table row?

a)

<tr>

b)

<td>

c)

<th>

d)

<row>

9.

Which is correct to style table, th, td together?

a)

table, th, td { ... }

b)

table th td { ... }

c)

<table th td>

d)

table + th + td { ... }

10.

Which is a correct CSS?

a)

colour: white;

b)

color: #222;

c)

color- white;

d)

colour: white

11.

Which CSS property sets text color?

a)

fontcolor

b)

text-color

c)

color

d)

style-color

12.

Identify the error: colour: white;

a)

Wrong spelling

b)

Missing semicolon

c)

Value incorrect

d)

Cannot style color in CSS

13.

Identify the CSS error: margin: 5

a)

Missing unit (px)

b)

Wrong property

c)

Must be percentage

d)

Missing semicolon only

14.

Error in fontfamily: georgia;

a)

Should be font-style

b)

Should be font-family

c)

Value incorrect

d)

Should be font-weight

15.

Error in fontsize: 14pix;

a)

Should be font-size

b)

"pix" is invalid

c)

Missing dash

d)

All of the above

16.

Correct list-style CSS?

a)

list-style-type= circle;

b)

list-style circle;

c)

list-style-type: circle;

d)

list: circle;

17.

HTML tag for a hyperlink?

a)

<link>

b)

<a>

c)

<href>

d)

<url>

18.

How to open a link in a new tab?

a)

target='open'

b)

target='_tab'

c)

target='_blank'

d)

new='tab'

19.

Correct HTML link syntax:

a)

<a src="page.html">

b)

<a link="page.html">

c)

<a href="page.html">

d)

<a url="page.html">

20.

CSS border syntax:

a)

border: 2px blue;

b)

border-size: 2px;

c)

border-color-style;

d)

border: 2px solid blue;

21.

Which CSS line is correct?

a)

background: gray

b)

background: gray;

c)

background: gray:

d)

background gray;

22.

Error in: border-top: 1px solid white

a)

Wrong property

b)

Missing semicolon

c)

Value invalid

d)

border-top cannot be used

23.

Problems in: textalign: centre

a)

textalign → text-align

b)

centre → center

c)

missing semicolon

d)

all of the above

24.

Correct CSS rule for h1:

a)

h1(color)

b)

h1 { color: #222; }

c)

{h1: color white;}

d)

h1 = color white;

25.

Error in <title> Page <title>

a)

Must be uppercase

b)

Should be self-closing

c)

Missing closing </title>

d)

Title cannot contain spaces

26.

Which tag contains CSS?

a)

<style>

b)

<script>

c)

<css>

d)

<head>

27.

Correct border-radius syntax:

a)

border-radius: 15

b)

border-radius: 15px;

c)

border-radius=15px;

d)

radius: 15px;

28.

HTML element for a footer:

a)

<footer>

b)

<foot>

c)

<bottom>

d)

<bottom>

29.

Correct CSS selector for table, th, td:

a)

table, th, td {}

b)

table th td {}

c)

C.

d)

table + th + td {}

30.

Correct CSS comment:

a)

<!-- comment -->

b)

/** comment **/

c)

/* comment */

d)

// comment