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