Hello All!
Are there particular web font libraries you can use in SharePoint?
Thanks!
Create a Custom Cascading Style Sheet and reference the file in your Master Page.
Font Squirrel is a great site for generating fonts:
http://www.fontsquirrel.com/tools/webfont-generator
In this Custom CSS you can use every font you like:
@font-face {
font-family: ‘custom-font’;
src: url(‘../font/custom-font.eot’);
src: url(‘../font/custom-font.eot?#iefix’) format(’embedded-opentype’),
url(‘../font/custom-font.woff’) format(‘woff’),
url(‘../font/custom-font.ttf’) format(‘truetype’),
url(‘../font/custom-font.svg#custom-font’) format(‘svg’);
font-weight: normal;
font-style: normal;
}
body {
font-family:’custom-font’;
}
or any other element…