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