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