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