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