Use on the webTotal Use [ 6718 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/189959ec36f955aaafefb3d50231a17a?family=GOST+2.304-81+type+B" 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/189959ec36f955aaafefb3d50231a17a?family=GOST+2.304-81+type+B);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "GOST 2.304-81 type B";
src: url("https://db.onlinewebfonts.com/t/189959ec36f955aaafefb3d50231a17a.eot");
src: url("https://db.onlinewebfonts.com/t/189959ec36f955aaafefb3d50231a17a.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/189959ec36f955aaafefb3d50231a17a.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/189959ec36f955aaafefb3d50231a17a.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/189959ec36f955aaafefb3d50231a17a.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/189959ec36f955aaafefb3d50231a17a.svg#GOST 2.304-81 type B")format("svg");
}
2CSS rules to specify fonts
font-family: "GOST 2.304-81 type B";