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