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