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