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