This guide will instruct you on how to install and use Bouazzi Maghribi font on various operating systems including Mac, Windows, and Linux. Additionally, it provides a simple usage guide for using the font on web pages.
- Download the font package and locate the
.ttf
or.otf
file. - Open the Font Book app.
- Drag and drop the font file into Font Book.
- The font will now be available across the system.
- Download the font package and locate the
.ttf
or.otf
file. - Right-click on the font file, then select
Install
from the dropdown menu. - The font will now be available across the system.
- Download the font package and locate the
.ttf
or.otf
file. - Copy the font file to
/usr/share/fonts
or~/.fonts
(create the folder if it doesn't exist). - Run the command
fc-cache -fv
in the terminal. - The font will now be available across the system.
To use the mono-weight font on a web page, follow these steps:
- Add a
@font-face
rule in your CSS file and include the location of your font file. Be sure to define a name for the font:
@font-face {
font-family: 'BouazziMaghribi';
src: url('BouazziMaghribi.woff');
}
- Use the
font-family
property with the name you provided in the@font-face
rule:
body {
font-family: 'BouazziMaghribi', monospace;
}
- Your website will now display text in BouazziMaghribi font.