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