Hello everyone! This is my first time seeking help here, so I would appreciate any assistance in better understanding.
I am currently working on a project that involves creating computerized contracts for banks using HTML, which will then be converted into PDF format. My challenge lies in attempting to add page numbers to the header of each contract page using HTML and CSS tags. Unfortunately, the code I have tried does not seem to be producing any results. Here is the code snippet I have been using:
@page {
@bottom-right {
content: counter(page);
}
@bottom-center{
white-space: pre;
content:'Read and Accepted \A Signed';
}margin:2cm;
}
However, this code is not functioning as intended at all.