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