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