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