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