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