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