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