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