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