N
N
Nikita Drozdov2016-07-27 00:32:44
Fonts
Nikita Drozdov, 2016-07-27 00:32:44

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

2 answer(s)
N
Nazar Mokrinsky, 2016-07-27
@Dirzstat

https://developer.mozilla.org/en-US/docs/Web/CSS/@...

O
Oleg, 2016-07-27
@werty1001

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 question

Ask a Question

731 491 924 answers to any question