Correct Answer : Cascading Style Sheets
Correct Answer : 1996
Correct Answer : three levels
Correct Answer : CSS3
<stylesheet>style.css</stylesheet>
<link rel="stylesheet" type="text/css" href="style.css">
<style src="style.css">
<a href="style.css"></a>
Correct Answer : <link rel="stylesheet" type="text/css" href="style.css">
Correct Answer : many pages
<head> section
<body> section
<section> section
<footer> section
Correct Answer : <head> section
// this is a css comment
<!-- this is a css comment -->
// this is a css comment //
/* this is a css comment */
Correct Answer : /* this is a css comment */
<script>
<css>
<style>
<link>
Correct Answer : <style>
Correct Answer : body {color: blue;}
Correct Answer : background-color
Correct Answer : color:
How do you add a background color for all <h1> elements?
all.h1 {background-color:#0099DA;}
h1.all {background-color:#0099DA;}
h1 {background-color:#0099DA;}
h1 {bg-color:#0099DA;}
Correct Answer : h1 {background-color:#0099DA;}
Correct Answer : font-size
What is the correct CSS syntax for making all the <p> elements bold?
p {font-weight:bold;}
<p style="text-size:bold;">
<p style="font-size:bold;">
p {text-size:bold;}
Correct Answer : p {font-weight:bold;}
a {underline:none;}
a {text-decoration:no-underline;}
a {decoration:no-underline;}
a {text-decoration:none;}
Correct Answer : a {text-decoration:none;}
Correct Answer : :hover
Correct Answer : font-family
Correct Answer : :border-bottom-width
Correct Answer : list-style-type: square;
Correct Answer : default
Correct Answer : #demo
Correct Answer : single, unique element
Correct Answer : .demo
Correct Answer : static
tr:even{background-color:#CCC;}
td:even{background-color:#CCC;}
td:nth-child(even){background-color:#CCC;}
tr:nth-child(even){background-color:#CCC;}
Correct Answer : tr:nth-child(even){background-color:#CCC;}
Correct Answer : border-bottom-weight:solid;
Correct Answer : 8px;
Correct Answer : margin:0px auto;
#header{height:30px; width:750px; color:#000;}
.header{height:30px; width:750px; font-color:#000;}
#header{height:30px; width:750px; text-color:#000;}
.header{height:30px; width:750px; color:#000;}
Correct Answer : #header{height:30px; width:750px; color:#000;}
@import-stylesheet url(css/style.css);
@import url(css/style.css);
@import-css url(css/style.css);
@import-style url(css/style.css);
Correct Answer : @import url(css/style.css);
span{size:16px;}
span{font-weight:16px;}
span{text-size:16px;}
span{font-size:16px;}
Correct Answer : span{font-size:16px;}
<p style="font: italic bold 15px;"> Free Time Learning </p>
<p style="font: italic, bold, 15px;"> Free Time Learning </p>
<p style="font-style: italic font-weight: bold font-size: 15px;"> Free Time Learning </p>
<p style="font-style:bold font-weight: italic font-size: 15px;"> Free Time Learning </p>
Correct Answer : <p style="font: italic bold 15px;"> Free Time Learning </p>
Correct Answer : line-height
Correct Answer : letter-spacing
Correct Answer : word-spacing
Correct Answer : list-style-image:
Correct Answer : float:right;
Correct Answer : border-width:5px;
Correct Answer : list-style-type:upper-roman;
:link, :visited, :hover, :active, :inactive
:link, :visited, :hover, :active
:link, :visit, :hover, :active
:link, :visited, :over, :active
Correct Answer : :link, :visited, :hover, :active
Correct Answer : border-style
Correct Answer : in
Correct Answer : filter: alpha(opacity=x)
Correct Answer : All of the above.
Correct Answer : Id
Correct Answer :
Correct Answer : z-index
Correct Answer : Not Possible
Correct Answer : float
Correct Answer : empty-cell
Correct Answer : 100%
<HEAD>
<src>
Correct Answer : <link>
Correct Answer : class
<img src="img.png">
Correct Answer : value
<' a comment'>
Correct Answer : /* a comment */
Correct Answer : padding
Correct Answer : relative
p {color: red;}
p.all {color: red;}
p.all {color: #990000;}
all.p {color: #998877;}
Correct Answer : p {color: red;}
a {text: no-underline;}
a {text-style: no-underline;}
a {text-decoration: no-underline;}
Correct Answer : blur()
Correct Answer : ruby
<head>
<html>
<div>
<body>
Correct Answer : <head>
Correct Answer : em
Correct Answer : brightness()
Correct Answer : CSS 2.1
Correct Answer : vw
Correct Answer : contrast()
h1 {color: red text-decoration: underline; font-style: italic;}
Correct Answer : only font-style: italic works
Correct Answer : font-variant
Correct Answer : RGB Color
Correct Answer : custom()
Correct Answer : grayscale()
h1 {color: "green";}
Correct Answer : none of the above
Correct Answer : list-style-type
Correct Answer : check
Correct Answer : invert()
Correct Answer : For use with computer screens
Correct Answer : list-style-image
Correct Answer : saturation()
Correct Answer : file
Correct Answer : linear-gradient()
Correct Answer : red
Correct Answer : matrix()
Correct Answer : sepia()
Correct Answer : linear
Correct Answer : CSS ON/Images ON
Correct Answer : transition-duration
Correct Answer : transition-timing-function
Correct Answer : content-type:string
Correct Answer : The Phark method
Correct Answer : content-length: string
Correct Answer : Radu Darvas Technique
Correct Answer : Langridge method
Correct Answer : Internet Explorer
Correct Answer : collapse
Correct Answer : content_type
Correct Answer : expires: date string
Correct Answer : Lindsay method
Correct Answer : attribute
Correct Answer : attribute*=value
<p>
Correct Answer : :empty
Correct Answer : :only-child
Correct Answer : IE
Correct Answer : firefox
Correct Answer : :visited
Correct Answer : !important
Correct Answer : Property
Correct Answer : parent to child
Correct Answer : Align
Correct Answer : Resize
Correct Answer : column-gap
Correct Answer : column-rule
Correct Answer : animation-direction
Correct Answer : animation-delay
Correct Answer : transition-property
Correct Answer : animation-duration
Correct Answer : background-repeat
Correct Answer : transform-render
Correct Answer : image-resolution
Correct Answer : object-fit
Correct Answer : object-position
Correct Answer : backface-visibility
:nth-child(n)
::first-line
:last-of-type
:first-of-type
Correct Answer : :nth-child(n)