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