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