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