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