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