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