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