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