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