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