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