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