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