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