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