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