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