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