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