The Code
The CSS code for the third day of CoderDojo Mallow's Summer Camp is as follows:
*{
font-family: Verdana, serif;
}
h1{
color: blue;
background-color:green;
font-size:2em;
font-family: serif, cursive;
}
div{
border: 5px inset red;
}
a:link{
text-decoration: none;
color:blue;
}
a:hover{
text-decoration: underline;
}
div div h1{
color: magenta;
}
div > table {
color: blue;
}
.example{
font-family: chiller;
}
Div p:first-child{
color: red;
}
Div p:nth-child(3){
color:green;
}
#Example{
Color: red;
}
a:visited{
color:purple;
}