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