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