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