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