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