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