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