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