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