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