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