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