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