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