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