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