I am creating a website.
I have written the HTML part and now I am writing the stylesheet. But there is always some space above my header. How can I remove it?
Try:
h1 { margin-top: 0; }
You're seeing the effects of margin collapsing.