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