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