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