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