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