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