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