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