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