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