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