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