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