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