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