Re: Hemp Shop Earth Moon Beam Beaded Cat - Dog Collars, Leashes Please review
I find the cream text on purple background hard to read. Fonts? Your CSS stylesheet specifies this:
body {
font-family: Arial, Helvetica, sans-serif;
}
Which is a great choice. BUT, you are overriding this by specifying Courier in the HTML.
<font color="#FFFFCC" face="Courier" size="5"><b>Earth Moon Beam Contact Form</b></font>
Take that code out, and it will look much better. You should always specify your fonts in the style sheet, and keep style coding out of the HTML.
|