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