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