Question No. 1 : <p>What is the meaning of CSS?</p>
Correct Answer : Cascading Style Sheet
Question No. 2 : <p>Which tag will you use to add style on your website?</p>
Correct Answer : <style></style>
Question No. 3 : <p>How will you add blue color to all paragraph tags?</p><p>Hint: write four parts of a style rule</p>
Correct Answer : p{ color : blue; }
Question No. 4 : <p><span style="background-color: transparent; color: rgb(0, 0, 0);">How would you set a purple background color to an element?</span></p>
Correct Answer : background-color:purple;
Question No. 5 : <p>How to set the width of all paragraph tags as half of the available width? </p><p>Hint: think about the total width as a percent and then think about the half of the width</p>
Correct Answer : p{ width: 50%; }
Question No. 6 : <p>Which one is not true?</p>
Correct Answer : Same ID should be used in different HTML tags
Question No. 7 : <p>How can we add multiple classes to an HTML element?</p>
Correct Answer : Separate class names by a whitespace
Question No. 8 : <p>How many values a margin style rule cannot have?</p>