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