add some css (you can add it directly in the page in the <head> element, instead of in an external stylesheet) to remove the margins around the cover :
Code:
<style type="text/css">
body {margin : 0;
padding : 0;}
</style>
i don't know why it's marked page 2, unless the margins are causing it to be larger than the page, and therefore it gets "bumped" to a second page... in which case, margin 0 might fix that.