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