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