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