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