I assume you figured how to do that by now, but in case it helps someone in the future:
The following will add a header and a footer with the page number at the centre of it.
CSS:
.header,
.footer {
width: 100%;
text-align: center;
position: fixed;
}
.header {
top: 0px;
}
.footer {
bottom: 0px;
}
.pagenum:before {
content: counter(page);
}
HTML (add it at the beginning of your body tag):
<div class="header">
Page <span class="pagenum"></span>
</div>
<div class="footer">
Page <span class="pagenum"></span>
</div>