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