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