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