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