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