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