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