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