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