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