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