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