Create an external CSS file for this form. This CSS file should select the font size of 20 points for all the labels; font colour should be dark blue for the headings and black for normal text. The background colour of the form should be light yellow.
html {
color: black;
}
form {
background-color: lightyellow;
}
/* Give the labels a class named labels */
.labels {
font-size: 20pt;
}
h1,h2,h3,h4,h5,h6 {
color: darkblue;
}
Comments
Leave a comment