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