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