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