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