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