How to Add Page Number in this html style for view page number like "page 1 out of page 1".
i want at the buttom of page after covert pdf to view like this:
"page 1 out of page 1"
anyone can help to do this style in html css here. ThankYou for Your Trying.Please help me with this.
const html = `<html>
<body>
<style>
div {
text-align: center;
}
c{
text-align: right;
}
@page {
size: landscape;
}
.demo {
border:1px solid #C0C0C0;
border-collapse:collapse;
padding:5px;
}
.demo th {
border:1px solid #C0C0C0;
padding:5px;
background:#F0F0F0;
}
.demo td {
border:1px solid #C0C0C0;
padding:5px;
text-align: center;
}
</style>
<div>
<img src="https://www.comdelta.com.my/wp-content/uploads/2021/10/Logo.jpeg"
alt="Comdelta Technologies Sdn. Bhd"
width="200" height="100"/>
</div>
</html>
</body>`;