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