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