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