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