Посмотрел пару уроков о том, как добавить шрифт не через google fonts, но столкнулся с проблемой: шрифты не подключаются.
Вот код:
@font-face {
font-family: "SegoeWP";
src: url("fonts/Segoe WP/ofont.ru_Segoe WP.eot");
src: url("fonts/Segoe WP/ofont.ru_Segoe WP.eot?#iefix") format("embedded-opentype"),
url("fonts/Segoe WP/ofont.ru_Segoe WP.woff") format("woof"),
url("fonts/Segoe WP/ofont.ru_Segoe WP.ttf") format("truetype");
font-weight: normal;
font-style: normal;
}
Стили подключены правильно. В основной css добавляю шрифты так:
body {
font-family: "SegoeWP";
}