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