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