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