Skip to content

Instantly share code, notes, and snippets.

@topleague
Created December 7, 2017 12:04
Show Gist options
  • Save topleague/81159b78cdcd05ac7c1cfd78604f7451 to your computer and use it in GitHub Desktop.
Save topleague/81159b78cdcd05ac7c1cfd78604f7451 to your computer and use it in GitHub Desktop.
Example of CSS for Premium Font Installation
/* CSS code in the Downloaded Folder */
@font-face {
font-family: 'Sailec';
src: url('Sailec-Regular.woff2') format('woff2'),
url('Sailec-Regular.woff') format('woff');
font-weight: normal;
font-style: normal;
}
/* New CSS Code after the path was changed */
@font-face {
font-family: 'Sailec';
src: url('fonts/Sailec-Regular.woff2') format('woff2'),
url('fonts/Sailec-Regular.woff') format('woff');
font-weight: normal;
font-style: normal;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment