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