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