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