View Single Post
Old 07-13-2023, 02:35 PM   #4
Turtle91
A Hairy Wizard
Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.
 
Turtle91's Avatar
 
Posts: 3,363
Karma: 20212733
Join Date: Dec 2012
Location: Charleston, SC today
Device: iPhone 15/11/X/6/iPad 1,2,Air & Air Pro/Surface Pro/Kindle PW & Fire
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>

Last edited by Turtle91; 07-13-2023 at 02:43 PM.
Turtle91 is offline   Reply With Quote