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