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