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