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