View Single Post
Old 07-13-2023, 03:35 PM   #5
WV-Mike
Connoisseur
WV-Mike began at the beginning.
 
Posts: 74
Karma: 10
Join Date: Jul 2023
Device: None
Newbie: How to create and ePub from HTML

Excellent!
Thanks.
It is starting to come together now.
WV-Mike
====
Quote:
Originally Posted by Turtle91 View Post
You need to link the stylesheet to the html file.

Right click the file(s) in the book browser pane on the left and select ‘link stylesheet’. Then select your css sheet.

If you are styling all your <h1>s the same, you don’t need to give them a class. Simply style the <h1> as:

Code:
CSS
h1 {
  font-variant: small-caps;
  font-size: 1.5em;
  font-family: 'Times New Roman',Times,serif;
  text-align: center}

HTML
<h1>Foreword</h1>
WV-Mike is offline   Reply With Quote