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