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