Answer the question
In order to leave comments, you need to log in
Let's say I created my own web font and pasted it into the site. How will browsers of site users react to it?
If my font is not displayed for all users (or a different font is shown), how can I make sure that my font is shown?
Answer the question
In order to leave comments, you need to log in
Connect in CSS, here is an example of Clear Sans bold:
@font-face {
font-family: 'Clear Sans';
font-style: italic;
font-weight: 700;
src: local('Clear Sans Bold Italic'), local('ClearSans-BoldItalic'),
url('fonts/clearsans_bold_italic.woff2') format('woff2'),
url('fonts/clearsans_bold_italic.woff') format('woff'),
url('fonts/clearsans_bold_italic.ttf') format('truetype');
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question