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