CSS Revision
CSS Revision
4. Set the font for styles h1, h2 , h3 and paragraph so that the browser selects
and displays the font Casion Pro Bold. If this font is not available, the
browser selects and displays the font Times New Roman. If neither of these
fonts are available, the browser should display its default serif font
h1,h2,h3,p{
font-family: "Casion Pro Bold", "Times New Roman", serif;}
5 Set style h1 so the text is red, centre aligned with a 30-point font
h1{
font-size: 30pt;
color: #ff0000;
text-align: center;}
9 Set all table borders and gridlines so that they are not visible.
table,td{border:0px}
10 Set the spaces between the borders of all table elements to 10 pixels.
Or
All cell spacing within the table is set to 10 pixels
table{border-spacing:10px}