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