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