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