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