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