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