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