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