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