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