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