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