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