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