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