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