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