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