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