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