
Announcements
Hi All,
I've been reading alot of thread around this but never found a definitive answer!
I'm learning a basic flow to take my HTML code and turn it in to a PDF using the one drive - Convert file from path. This works perfectly apart from trying to use any thing but stock fonts.
All lines apart from the signature line in a handwritten font show correctly, but the converter always defaults this one back. I've attempted with fonts i know are in Word and also linked to google fonts, but every time the result does not convert as it is in the HTML version.
Does anyone know if its possible to use the google fonts? or has a link to a resource that details what fonts can be used in the Flow Convert file to path PDF action?
Here's my HTML for reference:
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Homemade Apple">
<style>table td, th { border: 1px solid black;}
</style>
</head>
<body>
<img src="', variables('logo'),'">
<h2>Sign Off</h2>
<p>Record of assessment answers</p>
<table style="width:100%">
<tr>
<th>Question</th>
<th>Answer</th>
</tr>
<tr>
<td>Q1 A question/td>
<td>B</td>
</tr></table>
<p></p>
<table>
<tr>
<th>Total Score</th>
</tr>
<tr>
<td>20</td>
</tr></table>
<p>Signature</p>
<p style = "font-family:Homemade Apple;font-size:50pt">Fancy Signature Here</p>
</body>
</html>