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