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