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