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