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