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