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