mirror of
https://github.com/rajnandan1/kener.git
synced 2025-12-21 09:29:53 -06:00
682 B
682 B
title, description
| title | description |
|---|---|
| How to Add Custom Fonts | Kener | Kener allows you to add custom fonts to your site. This guide will help you add custom fonts to your Kener site. |
Add Custom Fonts
- Login to your Kener dashboard.
- Go to the
Themepage. - Scroll down to the
Fontssection. - Remove
Font URLandFont Name - In Custom CSS add your font
@font-face {
font-family: "CustomFont";
src:
url("/path-to-font/CustomFont.woff2") format("woff2"),
url("/path-to-font/CustomFont.woff") format("woff"),
url("/path-to-font/CustomFont.ttf") format("truetype");
font-weight: normal;
font-style: normal;
}
* {
font-family: "CustomFont", sans-serif;
}