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