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