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