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