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