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