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