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