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