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