Use on the webTotal Use [ 6180 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/2149a9a550d826dbe5009c86ba1e430c?family=ER+Univers+1251" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/2149a9a550d826dbe5009c86ba1e430c?family=ER+Univers+1251);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "ER Univers 1251";
src: url("https://db.onlinewebfonts.com/t/2149a9a550d826dbe5009c86ba1e430c.eot");
src: url("https://db.onlinewebfonts.com/t/2149a9a550d826dbe5009c86ba1e430c.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/2149a9a550d826dbe5009c86ba1e430c.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/2149a9a550d826dbe5009c86ba1e430c.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/2149a9a550d826dbe5009c86ba1e430c.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/2149a9a550d826dbe5009c86ba1e430c.svg#ER Univers 1251")format("svg");
}
2CSS rules to specify fonts
font-family: "ER Univers 1251";