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