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