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