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