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