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