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