And…
Dont use <p></p> just to add spacing. Paragraph tags should be used as block level elements to hold content. If you just need to add spacing, use line break tags like this:
<br />
Also, your <ul></ul> tags should not contain the text “type=circle”. If for some reason you need it in the opening tag, you do not also need it in the closing tag. Closing tags shoudl always just be the slash and the tag.
–mark