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