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