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