space between top of browser or frame and document body

css, html

Solution

Put some styles:

p { margin: 0; padding: 0; }

Problem

I have a page with a image. I want set it top of page. ``` <HTML> <HEAD> <title></title> <style> html, body { margin: 0; padding: 0; } </style> </HEAD> <BODY style="background-color:#3baa35;" > <a href="" ><p align="center"><IMG border=0 src="home.PNG" ></p></a> </BODY> </HTML> ``` But there is one line of space between the top of the page and the body. How to set image top of page?

Original source