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