E[attr^=value]
E[attr$=value]
E[attr*=value]
None of these
E ~ F
::after
:checked
:default
:%
:disabled
:element
:empty
:enabled
:first-child
:last-child
::first-line
::first-letter
:!(s)
:nth-child(s)
:not(s)
:root
:nth-oftype(n)
:only-child
class
id
type
None of the above
Style
Cascading Style Sheets
Creative Style Sheets
Computer Style Sheets
Colorful Style Sheets
<style src="mystyle.css">
<stylesheet>mystyle.css</stylesheet>
<link rel="stylesheet" type="text/css" href="mystyle.css">
<link rel="stylesheet" type="text/css" src="mystyle.css">
In the <body> section
At the end of the document
In the <head> section
Any Where in a Page
<css>
<style>
<script>
<link>
{body;color:black;}
{body:color=black;}
body {color: black;}
body:color=black;
// this is a comment //
// this is a comment
' this is a comment
/* this is a comment */
color
background-color
bgcolor
None Of These
h1.all {background-color:red;}
h1 {background-color:red;}
all.h1 {background-colorred;}
.h1{background-color:red}
text-color
font-color
All of These
font-size
text-size
font-style
text-style
<p style="font-size:bold;">
p {text-size:bold;}
<p style="text-size:bold;">
p {font-weight:bold;}