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