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