CSS

Given each of the questions below, check the most appropriate response.

Please enter your name

1. What is CSS?

Content Style Sheet
Cascading Sheets of Style
Colorful Style Sheet
Cascading Style Sheet


2. Which of the following is true?

CSS can be defined in an inlinetag/stylesheet/Externalstylesheet
CSS can be defined only externally
CSS has to be defined only internally
CSS can be defined only for styles


3. Which of the following tag is correct for referring to an external style sheet?

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


4. What is the correct tag to define a red color for Heading 1

Color: font="red"
H1 {font-color= "red";}
H1{ color: red}
Heading {Font: color="red";}