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