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