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