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