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