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