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