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