Wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Intermediate level quiz

Total questions: 10

Worksheet time: 5mins

Name
Class
Date
1.

What is the full form of CSS?

a)

Coding Style Sheet

b)

Cascading Style Sheet

c)

Cascading style script

d)

Coding Style Script

2.

How many types of CSS are there?

a)

4

b)

5

c)

3

d)

2

3.

Which type of CSS includes style tag(<style>)?

a)

Inline

b)

Internal

c)

External

d)

Outline

4.

Where do we use the style tag(<style>)?

a)

<body>

b)

<head>

c)

<p>

d)

<table>

5.

The inline css uses ______.

a)

style attribute

b)

style keyword

c)

style tag

d)

Stylesheet

6.

To apply color to a tag, what do we use?

a)

text-color:red

b)

colour:red

c)

color:red

d)

text-colour:red

7.

Which of the following is the correct syntax for CSS?

a)

property-name=property-value

b)

property-name:property-value

c)

Property-name;property-value

d)

property-name.propety-value

8.

How to we link the external CSS to the HTML file?

a)

<a href="mystyle.css">

b)

<style src="mystyle.css">

c)

<link rel="stylesheet" href="mystyle.css>

d)

<stylesheet href="mystyle.css">

9.

How do you insert comments in CSS

a)

/*This is a comment*/

b)

#this is a comment#

c)

*this is a comment*

d)

//this is a comment//

10.

Which type of selector is this?

body{

text-align:center;

}

a)

class selector

b)

Id selector

c)

Element selector

d)

None of the above