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