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