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