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