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