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