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