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