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