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