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