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