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