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