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