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