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