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