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