Jump to content
  • 0

@font-face


ksn
 Share

Question

Ребята не работает @font-face 

body {	overflow-x: hidden;	background-color: #f2f2f2;	font-family: Dosis,Roboto,Roboto Light,Roboto Bold;}@font-face {	font-family: Dosis;    src: url(fonts/Dosis.ttf) format("truetype-aat");    font-family:Roboto;    src:url(fonts/Roboto-Regual.ttf) format("truetype-aat");}

A файлы выглядят так.

 

Untitled_1_800.jpgi.gif

 

что делаю не правильно?

Link to comment
Share on other sites

10 answers to this question

Recommended Posts

  • 0

Здесь может быть что угодно:

- неверно указан url

- нельзя подключать больше 1 фонта в одном @font-face

- в браузере, в котором вы проверяете, не работает ttf

- неверно указан format (уж хз, откуда вы такой взяли)

- ваши ttf файлы являются десктопными и как вебфонты просто неадекватно распознаются браузером.

 

Как минимум пункт 2 надо поправить точно.

 

Я использую подключение от fontsquirel:

@font-face {    font-weight: normal;    font-style: normal;    font-family: 'Droid Sans';    src: url('../fonts/DroidSans.eot');    src: url('../fonts/DroidSans.eot?#iefix') format('embedded-opentype'),         url('../fonts/DroidSans.woff') format('woff'),         url('../fonts/DroidSans.ttf') format('truetype'),         url('../fonts/DroidSans.svg#DroidSans') format('svg');} 

Просто выкашиваю лишнее.

Link to comment
Share on other sites

  • 0

не срабатывает, не понятно оп чему...

@font-face {  font-family: Dosis;  src: url('/resources/fonts/Dosis.eot');  src: local('☺'), url('/resources/fonts/Dosis.woff') format('woff'), url('/resources/fonts/Dosis.ttf') format('truetype'), url('/resources/fonts/Dosis.svg') format('svg');  font-weight: normal;  font-style: normal;}

Предварительно подготовив шрифт через http://www.fontsquirrel.com и убедившись, что кириллица есть. Для каждого начертания шрифта отдельный font-face

Edited by Bravo
Link to comment
Share on other sites

  • 0
А у меня все равно не получается( делаю все правильно

у вас пути неправильные. url('../fonts') - неверно. надо без двоеточия и слэша, так правильно  - url('fonts')

Edited by Z1gnet
Link to comment
Share on other sites

  • 0
у вас пути неправильные. url('../fonts') - неверно. надо без двоеточия и слэша, так правильно  - url('fonts')

Если он думает что все правильно.. То легче будет переместить папку fonts по древу выше на один уровень.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy