Activity 4: Font Colours

Use the Back to Font tool at http://markup.co.nz/colorpicker/back_to_font.htm With the body tag selected, experiment by changing the font color, background and other properties

Find a combination that you
a) Like

body{
color: #000000;
background-color: #FFFFFF;
text-align: left;
text-indent: 1em;
font-family: Verdana,Helvetica, sans-serif;
margin-left: 1em;
margin-right: 1em;
border-width: thick;
width: auto;
}

b) Would not recommend

body{
color: #FFF0F5;
background-color: #FFFF00;
text-align: left;
text-indent: 1em;
font-family: Verdana,Helvetica, sans-serif;
margin-left: 1em;
margin-right: 1em;
border-width: thick;
width: auto;
letter-spacing: .20em;
font-style: italic;
}

Find the CSS code for the following –

H2 tag
Color: royalblue
Background: ghostwhite
fontFamily: Arial, Helvetica, sans‐serif

Copy and paste this code in your Weebly site

h2{
color: #4169E1;
background-color: #F8F8FF;
font-family: Arial, Helvetica, sans-serif;
}