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