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