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