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