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