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