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