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