I went ahead and added the font ZTimes New Roman to the Font folder of the E pub in Sigil. Added a stylesheet and created 3 styles, underline, underline bold and centerBold.
These are now visible in the published e pub and mobi
when I went to validate first I got the msg that "the font is in the manuscript but not used"
so I removed the font from the folder and now it says OEBPS/styles/fonts / timesNewRoman.ttf is reachable but not present in the manifest.
this is true as I deleted it but I was looking for instances of the font mentioned and cannot find anywhere in the e pub.
heres the .css code I used
@font-face {
font-family: Times New Roman;
font-style: normal;
font-weight: normal;
src:url("Fonts/Times New Roman.ttf");
}
p.letterULine {
font-family: "Times New Roman";
font-weight: normal;
font-style: normal;
font-size:1.5em;
line-height: 1.20em;
text-decoration: underline;
font-variant: normal;
text-indent: 0em;
text-align: left;
color: #000000;
margin: 1em 0 0 0;
-webkit-hyphens:none;
}
p.letterULineBold {
font-family: "Times New Roman";
font-weight: bold;
font-style: normal;
font-size:1.5em;
line-height: 1.20em;
text-decoration: underline;
font-variant: normal;
text-indent: 0em;
text-align: left;
color: #000000;
margin: 1em 0 0 0;
-webkit-hyphens:none;
}
p.letterBold {
font-family: "Times New Roman";
font-weight: bold;
font-style: normal;
font-size:1.5em;
line-height: 1.20em;
text-decoration: none;
font-variant: normal;
text-indent: 0em;
text-align: left;
color: #000000;
margin: 1em 0 0 0;
-webkit-hyphens:none;
}
p.letterCenter {
font-family: "Times New Roman";
font-weight: normal;
font-style: normal;
font-size:1.5em;
line-height: 1.20em;
text-decoration: none;
font-variant: normal;
text-indent: 0em;
text-align: center;
color: #000000;
margin: 1em 0 0 0;
-webkit-hyphens:none;
}
span.emphasis {
font-weight: normal;
font-style: normal;
}
|