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