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