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