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