freefontshare Free Fonts
  Top Fonts     Installation Guide     FAQ
Installation Guide


Method 1: Installing a Font via Double-Click (Easiest Method)
1 - Find a font.
2 - Click the "Download" button.
3 - Save the zip.
4 - Right-click on the file.
5 - Select Extract All… to unzip it.
6 - The font file will usually be in .ttf, .otf or .fon format.
7 - Navigate to the extracted .ttf, .otf or .fon font file.
8 - Double-click on the font file.
9 - A preview window will open showing the font.
10 - Click the "Install" button at the top of the window.
Notes 1 - If you see a User Account Control (UAC) prompt, click "Yes" to allow installation.
Notes 2 - Restart your application if the font doesn’t appear immediately.

Method 2: Installing a Font Manually via the Fonts Folder
If you want more control or install multiple fonts at once.
1 - Find a font.
2 - Click the "Download" button.
3 - Save the zip.
4 - Right-click on the file.
5 - Select Extract All… to unzip it.
6 - The font file will usually be in .ttf, .otf or .fon format.
7 - Press Win + R to open the Run dialog box.
8 - Type: C:\Windows\Fonts
9 - Press Enter to open the Fonts folder.
10 - Locate your downloaded font files (.ttf, .otf or .fon).
11 - Drag and drop or copy-paste them into the Fonts folder.
Notes 1 - Windows will automatically install the fonts.
Notes 2 - If a font already exists, Windows will ask if you want to replace it.
Notes 3 - You may need to restart your PC for the fonts to appear in all applications.

Method 3: Installing Fonts for All Users (Requires Admin Access)
If you want the font available for all users on the computer.
1 - Find a font.
2 - Click the "Download" button.
3 - Save the zip.
4 - Right-click on the file.
5 - Select Extract All… to unzip it.
6 - The font file will usually be in .ttf, .otf or .fon format.
7 - Press Win + R to open the Run dialog box.
8 - Type: C:\Windows\Fonts
9 - Press Enter to open the Fonts folder.
10 - Locate your downloaded font files (.ttf, .otf or .fon).
11 - Drag and drop or copy-paste them into the Fonts folder.
12 - If prompted, enter administrator credentials.
13 - Open any text editor (Word, Notepad) and check if the font appears.
Notes 1 - This method ensures all users on the PC can use the font.
Notes 2 - Some fonts may require a restart before appearing in all programs.

Method 1: Installing a Font Using Font Book (Easiest Method)
1 - Find a font.
2 - Click the "Download" button.
3 - Save the zip.
4 - Right-click on the file.
5 - Select Extract All… to unzip it.
6 - The font file will usually be in .ttf, .otf or .fon format.
7 - Navigate to the extracted .ttf, .otf or .fon font file.
8 - Double-click on the font file.
9 - A preview window will open showing the font.
10 - In the preview window, click "Install Font" at the bottom right.
11 - The font will be installed using Font Book.
12 - Open Font Book (Cmd + Space, type "Font Book", press Enter).
13 - The new font should appear under "User" fonts.
14 - Open an app (e.g., Pages, Word, Photoshop) and check if the font is available.
Notes 1 - This installs the font only for your user account (not for all users).
Notes 2 - Restart the app if the font does not appear immediately.

Method 2: Installing Fonts Manually for All Users
1 - Find a font.
2 - Click the "Download" button.
3 - Save the zip.
4 - Right-click on the file.
5 - Select Extract All… to unzip it.
6 - Open Finder and go to: Macintosh HD > Library > Fonts
7 - Drag and drop the .ttf, .otf or .fon font file into this folder.
8 - If prompted for an administrator password, enter it to confirm installation.
9 - Open Font Book (Cmd + Space, type "Font Book", press Enter).
10 - The font should appear under "Computer" fonts.
11 - Open an application like Word or Photoshop and check if the font appears.
Notes 1 - This method requires admin access.
Notes 2 - Restart the Mac or application if the font doesn’t show up immediately.

Method 3: Installing Fonts Manually for Specific Applications
For Adobe Photoshop, Illustrator, InDesign:
1 - Find a font.
2 - Click the "Download" button.
3 - Save the zip.
4 - Right-click on the file.
5 - Select Extract All… to unzip it.
6 - Open Finder and go to: Macintosh HD > Library > Application Support > Adobe > Fonts
7 - Copy and paste the .ttf, .otf or .fon font file into this folder.

For Microsoft Office (Word, Excel, PowerPoint):
1 - See Method 1: Installing a Font Using Font Book.
2 - Restart the Office app.
3 - Microsoft Office automatically detects system fonts but may require a restart.
Notes 1 - This method is useful if you want to install fonts only for a specific program.
Notes 2 - Some applications (like Canva, Figma) may require you to upload fonts manually.

Method 1: Installing a Font for a Single User (Easiest Method)
This method installs fonts only for your user account and does not require root access.
1 - Find a font.
2 - Click the "Download" button.
3 - Save the zip.
4 - Open a terminal and run to extract it:unzip font-file.zip
5 - The font file will usually be in .ttf, .otf or .fon format.
6 - Open a terminal and run: mkdir -p ~/.fonts
7 - This creates a hidden .fonts folder inside your home directory if it doesn’t already exist.
8 - Move the downloaded .TTF or .OTF file into the ~/.fonts/ directory: mv ~/Downloads/font-file.ttf ~/.fonts/
9 - Update the font cache so the system recognizes the new font: fc-cache -fv
10 - To check if the font is installed, run (Replace "FontName" with the actual name of the font.):fc-list | grep "FontName"
11 - Open an application like LibreOffice, GIMP, or Inkscape and check if the font is available.
Notes 1 - No root access is needed.
Notes 2 - The font is available only for the current user.
Notes 3 - Restart applications if the font doesn’t appear immediately.

Method 2: Installing Fonts for All Users
This method makes the font available for all user accounts but requires root access.
1 - Find a font.
2 - Click the "Download" button.
3 - Save the zip.
4 - Open a terminal and run to extract it: unzip font-file.zip
5 - The font file will usually be in .ttf, .otf or .fon format.
6 - Open a terminal and move the font file to /usr/share/fonts/:sudo mv ~/Downloads/font-file.ttf /usr/share/fonts/
     Alternatively, you can create a dedicated folder inside /usr/share/fonts/:
    sudo mkdir -p /usr/share/fonts/custom/
    sudo mv ~/Downloads/font-file.ttf /usr/share/fonts/custom/
7 - Update the font cache so the system recognizes the new font:sudo fc-cache -fv
8 - To check if the font is installed, run (Replace "FontName" with the actual name of the font.):fc-list | grep "FontName"
9 - Open an application like LibreOffice, GIMP, or Inkscape and check if the font is available.
Notes 1 - Requires sudo/root access.
Notes 2 - The font is available for all users on the system.
Notes 3 - Restart your computer or logout/login if the font doesn't show up.

Font doesn’t appear in applications?
➝ Close and restart the application or reboot your computer.

Can’t install a font?
➝ Ensure the file is not corrupted. Try re-downloading it.

Font not showing in Microsoft Word?
➝ Check if you installed the correct font format (.ttf, .otf or .fon).

Error: "Font already exists"?
➝ Delete the old font before reinstalling.









Submit a Font  |   Privacy Policy  |   Contact  |   FAQ  |   Go to top🔼