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