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