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