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