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