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