WorksheetsIntermediate level quiz
Total questions: 10
Worksheet time: 5mins
What is the full form of CSS?
Coding Style Sheet
Cascading Style Sheet
Cascading style script
Coding Style Script
How many types of CSS are there?
4
5
3
2
Which type of CSS includes style tag(<style>)?
Inline
Internal
External
Outline
Where do we use the style tag(<style>)?
<body>
<head>
<p>
<table>
The inline css uses ______.
style attribute
style keyword
style tag
Stylesheet
To apply color to a tag, what do we use?
text-color:red
colour:red
color:red
text-colour:red
Which of the following is the correct syntax for CSS?
property-name=property-value
property-name:property-value
Property-name;property-value
property-name.propety-value
How to we link the external CSS to the HTML file?
<a href="mystyle.css">
<style src="mystyle.css">
<link rel="stylesheet" href="mystyle.css>
<stylesheet href="mystyle.css">
How do you insert comments in CSS
/*This is a comment*/
#this is a comment#
*this is a comment*
//this is a comment//
Which type of selector is this?
body{
text-align:center;
}
class selector
Id selector
Element selector
None of the above
