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