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