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