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