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