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