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