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