wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

01 - 06 handout

Total questions: 35

Worksheet time: 18mins

Name
Class
Date
1.

What does HTML Stand for?

a)

Hyperlinks and Text Markup Language

b)

Home Tool Markup Language

c)

Hyper Text Markup Language

2.

Choose the correct HTML element for the largest heading

a)

<h1>

b)

<head>

c)

<h6>

3.

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

a)

<br>

b)

<lb>

c)

<break>

4.

What is the correct HTML for adding a background color?

a)

<background> yellow</background>

b)

<body bg = "Yellow">

c)

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

5.

Choose the correct HTML element to define important text

a)

<b>

b)

<important>

c)

<strong>

d)

<i>

6.

Choose the correct HTML element to define emphasized text

a)

<i>

b)

<italic>

c)

<em>

7.

Which character is used to indicate an end tag?

a)

*

b)

^

c)

<

d)

/

8.

Which of this elements are all <table> elements?

a)

<thead><head><tr>

b)

<table><head><tfoot>

c)

<table><tr><td>

d)

<table><tr><tt>

9.

Inline element are normally displayed without starting a new line.

a)

True

b)

False

10.

How can you make a numbered list?

a)

<ul>

b)

<dl>

c)

<ol>

d)

<list>

11.

How can you make a bulleted list?

a)

<ul>

b)

<dl>

c)

<ol>

d)

<list>

12.

What is the correct HTML for making a checkbox?

a)

<checkbox>

b)

<check>

c)

<input type = "check">

d)

<input type = "checkbox">

13.

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

a)

<textfield>

b)

<textinput type = "text">

c)

<input type ="text'>

d)

<input type ="textfield">

14.

What is the correct HTML for inserting an image?

a)

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

b)


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

c)

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

d)

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

15.

What is the correct HTML for inserting an image?

a)

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

b)


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

c)

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

d)

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

16.

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

a)

True

b)

False

17.

Block elements are normally displayed without starting a new line

a)

True

b)

False

18.

Which HTML element defines the title of the document?

a)

<title>

b)

<head>

c)

<meta>

19.

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

a)

longdesc

b)

src

c)

title

d)

alt

20.

Which doctype is correct for HTML5?

a)

<!DOCTYPE HTML5>

b)

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

c)

<!DOCTYPE html>

21.

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

a)

True

b)

False

22.

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

a)

placeholder

b)

formvalidate

c)

validate

d)

required

23.

Which HTML element defines navigation links?

a)

<navigation>

b)

<nav>

c)

<navigate>

24.

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

a)

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

b)

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

c)

Content aside from the page content

25.

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

a)

<top>

b)

<head>

c)

<header>

d)

<section>

26.

What does CSS stand for?

a)

Computer Style Sheets

b)

Creative Style Sheets

c)

Colorful Style Sheets

d)

Cascading Style Sheets

27.

What is the correct HTML for referring to an external style sheet?

a)

<link rel="stylesheet" type="text/css" href="mystyle.css"> 

b)

<stylesheet>mystyle.css</stylesheet>

c)

<style src="mystyle.css">

28.

Which HTML attribute is used to define inline styles?

a)

class

b)

font

c)

styles

d)

style

29.

Which is the correct CSS syntax?

a)

{body:color=black;}

b)

body:color=black;

c)

body {color: black;} 

d)

{body;color:black;}

30.

Which property is used to change the background color?

a)

color

b)

bgcolor

c)

background-color

31.

How do you insert a comment in a CSS file?

a)

// this is a comment

b)

' this is a comment

c)

/* this is a comment */ 

d)

// this is a comment //

32.

Which CSS property is used to change the text color of an element?

a)

color

b)

fgcolor

c)

text-color

33.

Which CSS property controls the text size?

a)

text-size

b)

font-style

c)

font-size

d)

text-style

34.

How do you select an element with id 'demo'?

a)

demo

b)

.demo

c)

*demo

d)

#demo

35.

How do you select elements with class name 'test'?

a)

#test

b)

test

c)

*test

d)

.test