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