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