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