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