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