Styling 0:28 video
How to change the font family in Stylesheets
One focused task, a quick video, and concise steps you can scan immediately.
To change the font family in Stylesheets;
- Open Designer Interface,
- Go to ‘Stylesheet’ module.
- Add a new stylesheet.
- Add the following CSS declaration:
font-family: "Font Name", sans-serif; - Replace “Font Name” with the name of the font you want to use. Make sure to enclose the font name in quotation marks.
- Save the stylesheet by clicking on the “Save” button.
body {
font-family: Garamond, sans-serif;
}
