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