NEW
Font size
WorksheetsX Web
Total questions: 10
Worksheet time: 5mins
CSS stands for
Cascade Sheets Style
Color Style Sheets
Cascading Style Sheets
Cascade Style Sheet
Which of the following tag is used to embed css in html page?
<!DOCTYPE html>
<style>
<css>
. Which of the following CSS selectors are used to specify a group of elements?
tag
id
class
both a and c
In CSS, what does h1 can be called as
Attribute
Selector
Value
What will be the output of following CSS code snippet?
h1 {color: "green";}
heading becomes dark-green
heading becomes green
nothings happen
In css, “color:red” can be called as
Declaration
Value
Selector
The HTML attribute used to define the internal stylesheet is -
style
<style>
The HTML attribute used to define the inline styles is -
style
styles
class
Are the negative values allowed in padding property?
yes
no
Which of the following is the correct syntax to make the background-color of all paragraph elements to yellow?
p {background-color : #yellow;}
p {background-color : yellow;}
all {background-color : yellow;}
