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