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