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