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