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