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