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