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