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