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