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