1

I have a webpage in pure HTML and CSS. This page is on localhost. I want to convert this page into pdf. What might be the best approach to convert it into pdf preserving all CSS styles. This may be a duplicate of this, but it would be more convenient to find a solution in JavaScript

Community
  • 1
  • 1
optimus
  • 834
  • 1
  • 10
  • 22
  • 3
    possible duplicate of [How to generate a pdf from html web page?](http://stackoverflow.com/questions/25046187/how-to-generate-a-pdf-from-html-web-page) – Daniel B May 23 '15 at 09:55

1 Answers1

1

there are HTML to PDF converters available for free, and you could automatically start a download with that. An example of this would be jsPDF, a free library for converting HTML to a PDF with Javascript

Nash
  • 26
  • 1