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