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