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